-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
64 lines (64 loc) · 1.4 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
backgroundOpacity: {
05: "0.05",
10: "0.10",
15: "0.15",
20: "0.2",
25: "0.25",
30: "0.3",
35: "0.35",
40: "0.4",
45: "0.45",
50: "0.5",
55: "0.55",
60: "0.6",
65: "0.65",
70: "0.7",
75: "0.75",
80: "0.8",
85: "0.85",
90: "0.9",
95: "0.95",
100: "1",
},
colors: {
gray: {
50: "#f9fafb",
100: "#d6d6d6",
200: "#adadad",
300: "#848484",
400: "#5b5b5b",
500: "#323232",
600: "#282828",
700: "#1e1e1e",
800: "#141414",
900: "#0a0a0a",
},
primary: {
100: "#d6d6d6",
200: "#adadad",
300: "#848484",
400: "#5b5b5b",
500: "#323232",
600: "#282828",
700: "#1e1e1e",
800: "#141414",
900: "#0a0a0a",
},
},
},
},
variants: {},
plugins: [import("@tailwindcss/typography"), import("daisyui")],
};