E

Combination 311

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#ab2439',
          'secondary': '#fdbf68',
          'accent': '#b7c2a9',
          'neutral': '#c7d14f',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #ab2439;
  --color-secondary: #fdbf68;
  --color-accent: #b7c2a9;
  --color-neutral: #c7d14f;
}

API Endpoint

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