E

Combination 145

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#7c4226',
          'secondary': '#b2b73e',
          'accent': '#1e0e3f',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #7c4226;
  --color-secondary: #b2b73e;
  --color-accent: #1e0e3f;
}

API Endpoint

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