forked from aeminium-labs/nextjs-solana-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (37 loc) · 883 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
// default settings can be found here
// https://unpkg.com/browse/[email protected]/stubs/defaultConfig.stub.js
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
styled: true,
// If you change the default themes don't forget to update in globals and theme-toggle files
themes: [
"night",
"retro",
// uncomment to enable
// "dark",
// "cupcake",
// "bumblebee",
// "emerald",
// "corporate",
// "synthwave",
// "retro",
// "valentine",
// "halloween",
// "garden",
// "forest",
// "aqua",
// "lofi",
// "pastel",
// "fantasy",
// "wireframe",
// "black",
// "dracula",
],
base: true,
utils: true,
logs: true,
rtl: false,
},
};