Generated Configuration

Tailwind Config


module.exports = {
  theme: {
    extend: {
      colors: {
        primary: '#3b82f6',
        secondary: '#10b981',
        text: '#1f2937',
        background: '#ffffff',
        
      },
      fontSize: {
        base: '16px',
        
      },
      fontFamily: {
        sans: ['inter', 'sans-serif'],
      },
      backgroundImage: {
        'gradient-custom': 'linear-gradient(to right, #4f46e5 0%, #7c3aed 100%)',
      },
    },
  },
}

CSS Variables


:root {
  --primary-color: #3b82f6;
  --secondary-color: #10b981;
  --text-color: #1f2937;
  --background-color: #ffffff;
  --gradient-start: #4f46e5;
  --gradient-end: #7c3aed;
  --font-size: 16px;
  --font-family: inter;
  
  --gradient-direction: to right;
  --gradient-stops: 0%, 100%;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  font-size: var(--font-size);
  font-family: var(--font-family), sans-serif;
}