-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (54 loc) · 1.63 KB
/
tailwind.config.js
File metadata and controls
60 lines (54 loc) · 1.63 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
ssg_dark: {
"primary": "#3B82F6",
"primary-focus": "#1D4ED8",
"primary-content": "#F1F5F9",
"secondary": "#1D4ED8",
"secondary-focus": "#1E40AF",
"secondary-content": "#F1F5F9",
"base-100": "#18181B",
"base-200": "#1F2937",
"base-300": "#2D333B",
"base-content": "#F1F5F9",
"--rounded-box": "0.25rem",
"--rounded-btn": "0.25rem",
"--rounded-badge": ".25rem",
},
ssg_light: {
"primary": "#3B82F6",
"primary-focus": "#2563EB",
"primary-content": "#1E293B",
"secondary": "#1E40AF",
"secondary-focus": "#1E3A8A",
"secondary-content": "#FFFFFF",
// Base colors with distinct steps for layering
"base-100": "#F8FAFF", // Clean, very light blue tint
"base-200": "#E0E7FF", // Distinct Indigo-100 for section breaks
"base-300": "#C7D2FE", // Indigo-200 for Card/Hover states
"base-content": "#0F172A", // Deeper Slate for better readability
"--rounded-box": "0.25rem",
"--rounded-btn": "0.25rem",
"--rounded-badge": ".25rem",
},
ssg_pdf: {
"base-100": "#FFFFFF",
"base-200": "#FFFFFF",
"base-300": "#FFFFFF",
"base-content": "#333333",
},
},
],
},
}