E

Combination 307

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#cc1236',
          'secondary': '#b5b1d8',
          'accent': '#a36aa5',
          'neutral': '#501345',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #cc1236;
  --color-secondary: #b5b1d8;
  --color-accent: #a36aa5;
  --color-neutral: #501345;
}

API Endpoint

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