-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (33 loc) · 893 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (33 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class", // or 'media' or false
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: {
light: "#8781CF", // Purple (light mode)
// dark: "#3d0066", // Purple (dark mode)
dark: "#3B306C",
},
secondary: {
light: "#10b981", // Green (light mode)
dark: "#059669", // Green (dark mode)
},
background: {
light: "#f0f0f0", // Light background
dark: "#1a202c", // Dark background
},
text: {
light: "#1a202c", // Dark text (light mode)
dark: "#f7fafc", // Light text (dark mode)
},
},
},
},
plugins: [],
};