E

Combination 340

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f15a30',
          'secondary': '#00b49b',
          'accent': '#b6bfc1',
          'neutral': '#111314',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f15a30;
  --color-secondary: #00b49b;
  --color-accent: #b6bfc1;
  --color-neutral: #111314;
}

API Endpoint

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