-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
35 lines (34 loc) · 986 Bytes
/
tailwind.config.ts
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
module.exports = {
plugins: [require('daisyui')],
theme: {
extend: {
fontFamily: {
"sans": ["Lato", "sans-serif"],
"header": ["Atkinson Hyperlegible", "sans-serif"],
},
},
},
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
// "base-100": "#ffffff", // backgrounds
"base-content": "#1f2937",
"primary-content": "#ffffff", // text
"primary": "#1A67D7" // AbandonTech Blue
},
},
{
dark: {
...require("daisyui/src/theming/themes")["dark"],
"base-100": "#1f2937", // backgrounds
"base-200": "#1c2531",
"base-content": "#ffffff",
"primary-content": "#ffffff", // text
"primary": "#1A67D7" // AbandonTech Blue
},
},
]
}
};