← Þróunarverkfæri

Litaspjald

GET /colors/scheme/:hex

Myndaðu a harmonious color palette from hvaða ... sem er starting hex color. Styður multiple color theory modes: analogic, complement, monochrome, triad, quad, og fleira. Skilar a stillanleg number of colors (default 5), hverja with hex, RGB, and HSL values. Gagnlegt fyrir design verkfæri, theme generators, brand color exploration, and hvaða ... sem er creative application that needs to derive related colors from a base color.

Breytur

hex nauðsynlegt

Hex color

mode valfrjálst sjálfgefið: analogic

Mode

count valfrjálst sjálfgefið: 5

Colors

Dæmi um fyrirspurnir

Grunnnotkun
curl "https://nordapi.ee/api/v1/colors/scheme/4287f5?mode=analogic"
Analogic palette from blue
curl "https://nordapi.ee/api/v1/colors/scheme/4287f5?mode=analogic"
Complementary colors from red
curl "https://nordapi.ee/api/v1/colors/scheme/ff0000?mode=complement"
Monochrome palette with 8 colors
curl "https://nordapi.ee/api/v1/colors/scheme/2ecc71?mode=monochrome&count=8"
Triad palette from purple
curl "https://nordapi.ee/api/v1/colors/scheme/9b59b6?mode=triad"

Lifandi svar

{
  "data": {
    "colors": [
      {
        "hex": "#3A80F0",
        "name": "Blueberry",
        "rgb": "rgb(58, 128, 240)"
      },
      {
        "hex": "#3E4DF2",
        "name": "Royal Blue",
        "rgb": "rgb(62, 77, 242)"
      },
      {
        "hex": "#6842F3",
        "name": "Blueberry",
        "rgb": "rgb(104, 66, 243)"
      },
      {
        "hex": "#9F45F4",
        "name": "Electric Violet",
        "rgb": "rgb(159, 69, 244)"
      },
      {
        "hex": "#D549F5",
        "name": "Heliotrope",
        "rgb": "rgb(213, 73, 245)"
      }
    ],
    "count": 5,
    "mode": "analogic",
    "seed": "#4287F5"
  },
  "success": true
}