E

Combination 321

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#b59392',
          'secondary': '#f5ecc2',
          'accent': '#253122',
          'neutral': '#97acc8',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #b59392;
  --color-secondary: #f5ecc2;
  --color-accent: #253122;
  --color-neutral: #97acc8;
}

API Endpoint

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