E

Combination 129

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#ffdd00',
          'secondary': '#bc892b',
          'accent': '#97acc8',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #ffdd00;
  --color-secondary: #bc892b;
  --color-accent: #97acc8;
}

API Endpoint

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