-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1011 Bytes
/
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
module.exports = {
mode: "jit",
purge: {
enabled: true,
content: ["./public/index.html", "./src/**/*.svelte", "./src/app/Markdown.js"]
},
daisyui: {
styled: true,
base: true,
utils: true,
logs: true,
rtl: false,
themes: ["light", "dark"]
},
theme: {
extend: {
colors: {
night: "#2f3136",
myblue: "#570df8",
blurple: {
200: "#EBEEFA",
300: "#C3CDEF",
400: "#9AABE5",
500: "#7289DA",
600: "#4A67CF",
700: "#304EB6",
800: "#253C8E",
900: "#1B2B65"
}
}
},
},
variants: {
extend: {}
},
plugins: [
require("@tailwindcss/forms")({ strategy: "class" }),
require("@tailwindcss/typography"),
require("daisyui"),
]
};