E

Combination 303

4 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#fbe6a0',
          'secondary': '#f15a30',
          'accent': '#253122',
          'neutral': '#b6bfc1',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #fbe6a0;
  --color-secondary: #f15a30;
  --color-accent: #253122;
  --color-neutral: #b6bfc1;
}

API Endpoint

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