E

Combination 291

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#c7d14f',
          'secondary': '#00b49b',
          'accent': '#96d1aa',
          'neutral': '#78cdd0',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #c7d14f;
  --color-secondary: #00b49b;
  --color-accent: #96d1aa;
  --color-neutral: #78cdd0;
}

API Endpoint

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