E

Combination 243

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#bb7125',
          'secondary': '#ebd3a2',
          'accent': '#6b7140',
          'neutral': '#34454c',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #bb7125;
  --color-secondary: #ebd3a2;
  --color-accent: #6b7140;
  --color-neutral: #34454c;
}

API Endpoint

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