E

Combination 147

3 colors

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'theme': {
          'primary': '#f27291',
          'secondary': '#82241f',
          'accent': '#b5decc',
        }
      }
    }
  }
}

CSS Variables

:root {
  --color-primary: #f27291;
  --color-secondary: #82241f;
  --color-accent: #b5decc;
}

API Endpoint

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