E

Combination 244

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#b59392',
          'secondary': '#c56127',
          'accent': '#6d7e77',
          'neutral': '#007190',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #b59392;
  --color-secondary: #c56127;
  --color-accent: #6d7e77;
  --color-neutral: #007190;
}

API Endpoint

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