Generate complete UI design theme tokens for Buttons, Cards, Forms, Sidebar, and Tables in CSS, Tailwind, SCSS & JSON.
:root {
--color-primary: #0066FF;
--color-secondary: #10B981;
--color-accent: #8B5CF6;
--color-background: #FCFCFD;
--color-surface: #FFFFFF;
--color-border: #E4E4E7;
}// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
primary: '#0066FF',
secondary: '#10B981',
accent: '#8B5CF6',
background: '#FCFCFD',
surface: '#FFFFFF',
border: '#E4E4E7',
},
},
},
};