Generate production-ready CSS variables and Tailwind theme configuration files for your web applications.
:root {
--color-primary: #0066FF;
--color-primary-rgb: 0, 102, 255;
--color-secondary: #10B981;
--color-secondary-rgb: 16, 185, 129;
--color-accent: #8B5CF6;
--color-accent-rgb: 139, 92, 246;
--color-neutral: #09090B;
--color-neutral-rgb: 9, 9, 11;
}// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
primary: '#0066FF',
secondary: '#10B981',
accent: '#8B5CF6',
neutral: '#09090B',
},
},
},
};