E

Combination 273

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f9c1ce',
          'secondary': '#7d133a',
          'accent': '#a36752',
          'neutral': '#b6bfc1',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f9c1ce;
  --color-secondary: #7d133a;
  --color-accent: #a36752;
  --color-neutral: #b6bfc1;
}

API Endpoint

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