mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-04 04:22:57 +00:00
27 lines
511 B
JavaScript
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: [],
|
|
}
|