E

Combination 261

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#a72144',
          'secondary': '#ffefae',
          'accent': '#78cdd0',
          'neutral': '#a1a39a',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #a72144;
  --color-secondary: #ffefae;
  --color-accent: #78cdd0;
  --color-neutral: #a1a39a;
}

API Endpoint

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