E

Combination 300

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f48067',
          'secondary': '#fdbf68',
          'accent': '#b5decc',
          'neutral': '#78cdd0',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f48067;
  --color-secondary: #fdbf68;
  --color-accent: #b5decc;
  --color-neutral: #78cdd0;
}

API Endpoint

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