E

Combination 264

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f8b6ba',
          'secondary': '#dd4027',
          'accent': '#b7c2a9',
          'neutral': '#0093a5',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f8b6ba;
  --color-secondary: #dd4027;
  --color-accent: #b7c2a9;
  --color-neutral: #0093a5;
}

API Endpoint

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