-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
113 lines (92 loc) · 3.17 KB
/
tailwind.config.cjs
File metadata and controls
113 lines (92 loc) · 3.17 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
101
102
103
104
105
106
107
108
109
110
111
112
113
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backdropBrightness: {
25: ".25",
},
fontFamily: {
hacker: ["HACKER1984", "monospace"],
c64: ["C64", "monospace"],
casio: ["WWDIGITAL", "monospace"],
coder: ["OCR-A", "monospace"],
gamer: ["GAMING286", "monospace"],
pentium: ["GAMINGPENTIUM", "monospace"],
}
},
},
plugins: [
require('@tailwindcss/typography'),
require("daisyui")
],
daisyui: {
styled: true,
base: true,
utils: true,
logs: true,
rtl: false,
themes: [
{
ashdark: {
'primary': '#5b696f',
'primary-focus': '#033859',
'primary-content': '#eeeeff',
'secondary': '#44b022',
'secondary-focus': '#00cc00',
'secondary-content': '#000000',
'accent': '#d4a886',
'accent-focus': '#ffdd00',
'accent-content': '#000000',
'neutral': '#5f7992',
'neutral-focus': '#7f99a2',
'neutral-content': '#eeeeff',
'base-100': '#131720',
'base-200': '#232730',
'base-300': '#022033',
'base-content': '#eeeeff',
'info': '#384fff',
'success': '#87cf3a',
'warning': '#ffb347',
'error': '#ff1a1a',
'--rounded-box': '0.25rem',
'--rounded-btn': '.25rem',
'--rounded-badge': '0.1rem',
'--animation-btn': '0.25s',
'--animation-input': '0.2s',
'--navbar-padding': '.5rem',
'--border-btn': '1px',
},
ashlight: {
'primary': '#5b696f',
'primary-focus': '#033859',
'primary-content': '#eeeeff',
'secondary': '#51c1df',
'secondary-focus': '#71e1ff',
'secondary-content': '#111133',
'accent': '#d4a886',
'accent-focus': '#ae9822',
'accent-content': '#eeeeff',
'neutral': '#102e88',
'neutral-focus': '#0038c7',
'neutral-content': '#eeeeff',
'base-100': '#eeeeff',
'base-200': '#ddddee',
'base-300': '#022033',
'base-content': '#222200',
'info': '#384fff',
'success': '#87cf3a',
'warning': '#ffb347',
'error': '#ff1a1a',
'--rounded-box': '0.0rem',
'--rounded-btn': '0.0rem',
'--rounded-badge': '0.0rem',
'--animation-btn': '0.25s',
'--animation-input': '0.2s',
'--navbar-padding': '.5rem',
'--border-btn': '1px',
},
},
],
},
}