-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtailwind.config.js
More file actions
100 lines (100 loc) · 3.58 KB
/
tailwind.config.js
File metadata and controls
100 lines (100 loc) · 3.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {},
container: false,
},
plugins: [require('daisyui')],
daisyui: {
themes: [
{
business: {
"color-scheme": "dark",
"primary": "oklch(41.703% 0.099 251.473)",
"primary-content": "oklch(88.34% 0.019 251.473)",
"secondary": "oklch(64.092% 0.027 229.389)",
"secondary-content": "oklch(12.818% 0.005 229.389)",
"accent": "oklch(75% 0.183 55.934)",
"accent-content": "oklch(98% 0.003 247.858)",
"neutral": "oklch(27.441% 0.013 253.041)",
"neutral-content": "oklch(85.488% 0.002 253.041)",
"base-100": "oklch(24.353% 0 0)",
"base-200": "oklch(22.648% 0 0)",
"base-300": "oklch(20.944% 0 0)",
"base-content": "oklch(84.87% 0 0)",
"info": "oklch(62.616% 0.143 240.033)",
"info-content": "oklch(12.523% 0.028 240.033)",
"success": "oklch(70.226% 0.094 156.596)",
"success-content": "oklch(14.045% 0.018 156.596)",
"warning": "oklch(77.482% 0.115 81.519)",
"warning-content": "oklch(15.496% 0.023 81.519)",
"error": "oklch(51.61% 0.146 29.674)",
"error-content": "oklch(90.322% 0.029 29.674)",
"--rounded-box": "0.25rem",
"--rounded-btn": "0.25rem",
"--rounded-badge": "0.25rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-focus-scale": "0.95",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.5rem",
"--radius-selector": "2rem",
"--radius-field": "0.25rem",
"--size-selector": "0.3125rem",
"--size-field": "0.3125rem",
"--border": "1px",
"--depth": "1",
"--noise": "1",
},
wireframe: {
"color-scheme": "light",
"primary": "oklch(87% 0 0)",
"primary-content": "oklch(26% 0 0)",
"secondary": "oklch(87% 0 0)",
"secondary-content": "oklch(26% 0 0)",
"accent": "oklch(70% 0.213 47.604)",
"accent-content": "oklch(98% 0.003 247.858)",
"neutral": "oklch(87% 0 0)",
"neutral-content": "oklch(26% 0 0)",
"base-100": "oklch(100% 0 0)",
"base-200": "oklch(97% 0 0)",
"base-300": "oklch(94% 0 0)",
"base-content": "oklch(20% 0 0)",
"info": "oklch(44% 0.11 240.79)",
"info-content": "oklch(90% 0.058 230.902)",
"success": "oklch(43% 0.095 166.913)",
"success-content": "oklch(90% 0.093 164.15)",
"warning": "oklch(47% 0.137 46.201)",
"warning-content": "oklch(92% 0.12 95.746)",
"error": "oklch(44% 0.177 26.899)",
"error-content": "oklch(88% 0.062 18.334)",
"--rounded-box": "0.25rem",
"--rounded-btn": "0.25rem",
"--rounded-badge": "0.25rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-focus-scale": "0.95",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.5rem",
"--radius-selector": "2rem",
"--radius-field": "0.25rem",
"--size-selector": "0.3125rem",
"--size-field": "0.3125rem",
"--border": "1px",
"--depth": "1",
"--noise": "1",
},
}
],
darkTheme: 'business',
base: true,
styled: true,
utils: true,
},
}