generated from saadeghi/astro-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (59 loc) · 1.43 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
mode: 'jit',
purge: [
'./public/**/*.html',
'./src/**/*.{astro,js,ts,jsx,tsx,vue,svelte}'
],
theme: {
extend: {
fontFamily: {
'title': ['"Author"',"sans-serif"],
'wide': ['"Panchang"',"sans-serif"],
}
}
},
plugins: [
require('daisyui'),
],
daisyui: {
themes: [
{
"dark": {
"primary": "#e95374",
"primary-focus": "#d94f6d",
"primary-content": "#000",
"secondary": "#f9cb33",
"secondary-focus": "#f3c52e",
"secondary-content": "#000",
"accent": "#2e97f3",
"accent-focus": "#2a92ed",
"accent-content": "#fff",
"base-100": "#16121a",
"base-200": "#1a161f",
"base-300": "#201926",
"base-content": "#ffffff",
"neutral": "#1a161f",
"neutral-focus": "#201926",
"neutral-content": "#ffffff",
"info": "#247cd9",
"success": "#32a57b",
"warning": "#f9cb33",
"error": "#c55757",
"--rounded-box": "1rem",
"--rounded-btn": ".3rem",
"--rounded-badge": ".1rem",
"--tab-radius": ".3rem",
"--btn-text-case": "normal-case"
},
},
{
"light": {
"base-100": "#ffffff",
"base-200": "#eeeeee",
"base-300": "#dddddd",
"base-content": "#000000",
},
}
]
}
}