E

Combination 247

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#bb7125',
          'secondary': '#ffdd00',
          'accent': '#00978d',
          'neutral': '#1c4286',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #bb7125;
  --color-secondary: #ffdd00;
  --color-accent: #00978d;
  --color-neutral: #1c4286;
}

API Endpoint

GET https://espectro.dev/api/combinations/247