E

Combination 288

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f99d1b',
          'secondary': '#644b1e',
          'accent': '#7a4456',
          'neutral': '#111314',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f99d1b;
  --color-secondary: #644b1e;
  --color-accent: #7a4456;
  --color-neutral: #111314;
}

API Endpoint

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