2024-12-21 19:11:09 -08:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: [
|
|
|
|
"./components/**/*.{js,vue,ts}",
|
|
|
|
"./layouts/**/*.vue",
|
|
|
|
"./pages/**/*.vue",
|
|
|
|
"./plugins/**/*.{js,ts}",
|
|
|
|
"./app.vue",
|
|
|
|
"./error.vue",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
keyframes: {
|
|
|
|
appear: {
|
|
|
|
"0%": {
|
|
|
|
opacity: "0",
|
|
|
|
},
|
|
|
|
"100%": {
|
|
|
|
opacity: "1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
appear: "appear 0.5s ease-in-out",
|
|
|
|
}
|
2025-01-03 21:50:12 -08:00
|
|
|
},
|
|
|
|
boxShadow: {
|
|
|
|
'md': '0px 0px 5px 5px',
|
|
|
|
'sm': '0px 0px 2px 2px'
|
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
"primary": "#441196",
|
|
|
|
"secondary": "#4d0099",
|
|
|
|
"highlight": "#b805ff",
|
|
|
|
"success": "#10B981",
|
|
|
|
"danger": "#EF4444",
|
|
|
|
"warning": "#F59E0B",
|
|
|
|
"info": "#3B82F6",
|
|
|
|
"tip": "#6EE7B7",
|
|
|
|
"note": "#6B7280",
|
|
|
|
"important": "#F87171",
|
|
|
|
"dark": "#111827",
|
|
|
|
"light": "#F9FAFB",
|
|
|
|
"image": "#666666",
|
|
|
|
"gray": {
|
|
|
|
50: "#F9FAFB",
|
|
|
|
100: "#F3F4F6",
|
|
|
|
200: "#E5E7EB",
|
|
|
|
300: "#D1D5DB",
|
|
|
|
400: "#9CA3AF",
|
|
|
|
500: "#6B7280",
|
|
|
|
600: "#4B5563",
|
|
|
|
700: "#374151",
|
|
|
|
800: "#1F2937",
|
|
|
|
900: "#111827",
|
|
|
|
},
|
|
|
|
},
|
2024-12-21 19:11:09 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|