E

Combination 222

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#e2b540',
          'secondary': '#f99d1b',
          'accent': '#c16b27',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #e2b540;
  --color-secondary: #f99d1b;
  --color-accent: #c16b27;
}

API Endpoint

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