2025-06-29 07:12:20 -04:00
|
|
|
module.exports = {
|
2025-07-02 04:16:53 -04:00
|
|
|
darkMode: 'class',
|
2025-06-30 13:02:19 -04:00
|
|
|
content: [
|
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
|
],
|
2025-07-02 04:16:53 -04:00
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
primary: "oklch(45% 0.124 130.933)",
|
|
|
|
|
secondary: "oklch(37% 0.034 259.733)",
|
|
|
|
|
accent: {
|
|
|
|
|
100: "oklch(95% 0.013 255.508)",
|
|
|
|
|
500: "oklch(70% 0.013 255.508)",
|
|
|
|
|
600: "oklch(60% 0.013 255.508)",
|
|
|
|
|
700: "oklch(50% 0.013 255.508)",
|
|
|
|
|
},
|
|
|
|
|
neutral: "oklch(14% 0.005 285.823)",
|
|
|
|
|
base: {
|
|
|
|
|
100: "oklch(100% 0 0)",
|
|
|
|
|
200: "oklch(98% 0 0)",
|
|
|
|
|
300: "oklch(95% 0 0)",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-06-30 13:02:19 -04:00
|
|
|
plugins: [],
|
|
|
|
|
}
|