E

Combination 133

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#82241f',
          'secondary': '#b09f36',
          'accent': '#00b49b',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #82241f;
  --color-secondary: #b09f36;
  --color-accent: #00b49b;
}

API Endpoint

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