E

Combination 101

2 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#e0b3b6',
          'secondary': '#1c4286',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #e0b3b6;
  --color-secondary: #1c4286;
}

API Endpoint

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