-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 927 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 927 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
"nunito-sans": ["Nunito Sans", "Arial", "sans"],
},
boxShadow: {
custom: "0 0 7px 1px rgba(0,0,0,0.2)",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
light: {
...require("daisyui/src/colors/themes")["[data-theme=light]"],
primary: "hsl(0, 0%, 98%)",
secondary: "hsl(0, 0%, 100%)",
"primary-content": "hsl(200, 15%, 8%)",
},
},
{
dark: {
...require("daisyui/src/colors/themes")["[data-theme=dark]"],
primary: "hsl(207, 26%, 17%)",
secondary: "hsl(209, 23%, 22%)",
"primary-content": "hsl(0, 0%, 100%)",
},
},
],
},
};