E

Combination 221

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#a62c37',
          'secondary': '#b6bfc1',
          'accent': '#111314',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #a62c37;
  --color-secondary: #b6bfc1;
  --color-accent: #111314;
}

API Endpoint

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