E

Combination 322

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#e31f26',
          'secondary': '#a84222',
          'accent': '#bf5892',
          'neutral': '#6450a1',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #e31f26;
  --color-secondary: #a84222;
  --color-accent: #bf5892;
  --color-neutral: #6450a1;
}

API Endpoint

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