E

Combination 302

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#fdbf68',
          'secondary': '#c2ae93',
          'accent': '#bce4e5',
          'neutral': '#007190',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #fdbf68;
  --color-secondary: #c2ae93;
  --color-accent: #bce4e5;
  --color-neutral: #007190;
}

API Endpoint

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