E

Combination 225

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#cc1236',
          'secondary': '#004f46',
          'accent': '#704357',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #cc1236;
  --color-secondary: #004f46;
  --color-accent: #704357;
}

API Endpoint

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