-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwindcss.config.ts
More file actions
50 lines (50 loc) · 900 Bytes
/
tailwindcss.config.ts
File metadata and controls
50 lines (50 loc) · 900 Bytes
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
/** @type {import("tailwindcss").Config} */
export default {
"content": [
"./src/app.html",
"./src/pages/**/*.svelte",
"./src/components/**/*.svelte",
"./src/routes/**/*.svelte"
],
"darkMode": "[data-them='dark-logo']",
"theme": {
"extend": {
"container": {
"padding": {
"DEFAULT": "1rem",
"sm": "4rem",
"md": "4rem",
"lg": "4rem",
"xl": "4rem",
"2xl": "4rem"
}
}
}
},
"daisyui": {
"themes": [
{
"light-logo": {
"primary": "#e5d5ff",
"secondary": "#220055",
"accent": "#808080",
"neutral": "#3D4451",
"base-100": "#FFFFFF",
"base-200": "#F7F7F7"
}
},
{
"dark-logo": {
"primary": "#220055",
"secondary": "#e5d5ff",
"accent": "#808080",
"neutral": "#191D24",
"base-100": "#2A303C",
"base-200": "#222834"
}
}
]
},
"variants": {},
"plugins": []
}