E

Combination 306

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f8ed43',
          'secondary': '#00978d',
          'accent': '#009465',
          'neutral': '#bce4e5',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f8ed43;
  --color-secondary: #00978d;
  --color-accent: #009465;
  --color-neutral: #bce4e5;
}

API Endpoint

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