E

Combination 287

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f37f94',
          'secondary': '#cab356',
          'accent': '#a7d4e4',
          'neutral': '#78cdd0',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f37f94;
  --color-secondary: #cab356;
  --color-accent: #a7d4e4;
  --color-neutral: #78cdd0;
}

API Endpoint

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