-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1.15 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./site/**/*.{html,liquid,md,js}'],
important: true,
theme: {
extend: {
fontFamily: {
serif: ["EB Garamond", "serif"],
sans: ["Arvo", "sans"]
},
},
},
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
"base-100": "#f5f0e6", // alabaster
"base-content": "#230616", // dark purple
"accent": "#007049", // dartmouth green
"secondary": "#975020", // brown sugar
"neutral": "#EAE0CD", // pearl
"neutral-content": "#230616" // dark purple
},
},
{
dark: {
...require("daisyui/src/theming/themes")["dark"],
"base-100": "#11030B", // licorice
"base-content": "#E7DBC5", // pearl
"accent": "#61A88F", // zomp
"secondary": "#C2845B", // brown sugar
"neutral": "#33272e", // raisin black
"neutral-content": "#e8e3da" // alabaster
},
},
],
},
plugins: [
require('daisyui'),
require('@tailwindcss/typography'),
]
}