E

Combination 279

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#bb7125',
          'secondary': '#eea78c',
          'accent': '#c2ae93',
          'neutral': '#12354e',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #bb7125;
  --color-secondary: #eea78c;
  --color-accent: #c2ae93;
  --color-neutral: #12354e;
}

API Endpoint

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