-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (32 loc) · 836 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (32 loc) · 836 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
const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
boxShadow: {
'sm-custom': "0px 1px 2px 0px rgba(0, 0, 0, .06), 0px 1px 3px 0px rgba(0, 0, 0, .1)"
},
colors: {
tertiary: "var(--colors-tertiary)",
bgDefault: "#FDFBF6",
},
textColor: {
"colors-text-secondary": "var(--colors-text-secondary)",
fgDefault: "#242422",
},
flex: {
0: "0 0 auto",
}
},
},
darkMode: "class",
plugins: [nextui({
})],
};