E

Combination 212

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#ab2439',
          'secondary': '#986f2d',
          'accent': '#97acc8',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #ab2439;
  --color-secondary: #986f2d;
  --color-accent: #97acc8;
}

API Endpoint

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