E

Combination 265

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#d46d7a',
          'secondary': '#ffdd00',
          'accent': '#a6a159',
          'neutral': '#1e0e3f',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #d46d7a;
  --color-secondary: #ffdd00;
  --color-accent: #a6a159;
  --color-neutral: #1e0e3f;
}

API Endpoint

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