E

Combination 281

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#ffefae',
          'secondary': '#00978d',
          'accent': '#96d1aa',
          'neutral': '#007190',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #ffefae;
  --color-secondary: #00978d;
  --color-accent: #96d1aa;
  --color-neutral: #007190;
}

API Endpoint

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