E

Combination 314

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f37f94',
          'secondary': '#793327',
          'accent': '#1c4286',
          'neutral': '#4e1d4c',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f37f94;
  --color-secondary: #793327;
  --color-accent: #1c4286;
  --color-neutral: #4e1d4c;
}

API Endpoint

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