E

Combination 242

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f37f94',
          'secondary': '#ae5224',
          'accent': '#1a7444',
          'neutral': '#111314',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f37f94;
  --color-secondary: #ae5224;
  --color-accent: #1a7444;
  --color-neutral: #111314;
}

API Endpoint

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