E

Combination 305

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#eeb480',
          'secondary': '#ffdd00',
          'accent': '#b2b73e',
          'neutral': '#b5decc',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #eeb480;
  --color-secondary: #ffdd00;
  --color-accent: #b2b73e;
  --color-neutral: #b5decc;
}

API Endpoint

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