-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
76 lines (72 loc) · 2.38 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/** @type {import('tailwindcss').Config} */
import tailwindScrollbar from "tailwind-scrollbar"
import { nextui } from "@nextui-org/react";
import tailwindAnimate from "tailwindcss-animate"
const tailwindConfig = {
darkMode: ["class"],
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
darkMode: 'class',
fontFamily: {
sans: ["Inter", "sans-serif"]
},
}
},
plugins: [
tailwindScrollbar,
tailwindAnimate,
nextui({
layout: {
dividerWeight: "1px", // h-divider the default height applied to the divider component
disabledOpacity: 0.5, // this value is applied as opacity-[value] when the component is disabled
fontSize: {
tiny: "0.75rem", // text-tiny
small: "0.875rem", // text-small
medium: "1rem", // text-medium
large: "1.125rem", // text-large
},
lineHeight: {
tiny: "1rem", // text-tiny
small: "1.25rem", // text-small
medium: "1.5rem", // text-medium
large: "1.75rem", // text-large
},
radius: {
small: "8px", // rounded-small
medium: "12px", // rounded-medium
large: "14px", // rounded-large
},
borderWidth: {
small: "1px", // border-small
medium: "2px", // border-medium (default)
large: "3px", // border-large
},
},
themes: {
dark: {
layout: {
hoverOpacity: 0.9, // this value is applied as opacity-[value] when the component is hovered
boxShadow: {
// shadow-small
small:
"0px 0px 5px 0px rgb(0 0 0 / 0.05), 0px 2px 10px 0px rgb(0 0 0 / 0.2), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15)",
// shadow-medium
medium:
"0px 0px 15px 0px rgb(0 0 0 / 0.06), 0px 2px 30px 0px rgb(0 0 0 / 0.22), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15)",
// shadow-large
large:
"0px 0px 30px 0px rgb(0 0 0 / 0.07), 0px 30px 60px 0px rgb(0 0 0 / 0.26), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15)",
},
},
},
},
}),
]
};
export default tailwindConfig;