E

Combination 299

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#c53c69',
          'secondary': '#eea78c',
          'accent': '#819238',
          'neutral': '#007190',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #c53c69;
  --color-secondary: #eea78c;
  --color-accent: #819238;
  --color-neutral: #007190;
}

API Endpoint

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