Files
Trackeep/Others/oauth-service/tailwind.config.cjs
T
Tomas Dvorak d27cf14110 first test
2026-02-08 14:14:55 +01:00

27 lines
511 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#6366f1',
dark: '#4f46e5'
},
secondary: '#8b5cf6',
success: '#10b981',
warning: '#f59e0b',
danger: '#ef4444',
dark: '#1f2937',
gray: '#6b7280',
light: '#f3f4f6',
white: '#ffffff'
}
},
},
plugins: [],
}