E

Combination 271

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#b71f57',
          'secondary': '#96d1aa',
          'accent': '#099197',
          'neutral': '#112f2c',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #b71f57;
  --color-secondary: #96d1aa;
  --color-accent: #099197;
  --color-neutral: #112f2c;
}

API Endpoint

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