E

Combination 342

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f8b6ba',
          'secondary': '#fdbf68',
          'accent': '#986f2d',
          'neutral': '#253122',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f8b6ba;
  --color-secondary: #fdbf68;
  --color-accent: #986f2d;
  --color-neutral: #253122;
}

API Endpoint

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