E

Combination 346

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#b73f74',
          'secondary': '#b5decc',
          'accent': '#c7d14f',
          'neutral': '#6d7e77',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #b73f74;
  --color-secondary: #b5decc;
  --color-accent: #c7d14f;
  --color-neutral: #6d7e77;
}

API Endpoint

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