forked from pot-app/pot-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
73 lines (72 loc) · 2.3 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
// tailwind.config.js
const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// ...
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {},
},
darkMode: "class",
plugins: [nextui({
themes: {
dark: {
colors: {
background: "#202020",
foreground: "#e7e7e7",
content1: "#282828",
content2: "#303030",
content3: "#383838",
content4: "#404040",
default: {
DEFAULT: "#484848",
50: "#282828",
100: "#383838",
200: "#484848",
300: "#585858",
400: "#686868",
500: "#a7a7a7",
600: "#b7b7b7",
700: "#c7c7c7",
800: "#d7d7d7",
900: "#e7e7e7"
},
primary: {
DEFAULT: "#49cee9",
foreground: "#181818"
}
},
}, light: {
colors: {
background: "#ffffff",
foreground: "#181818",
content1: "#eeeeee",
content2: "#dddddd",
content3: "#cccccc",
content4: "#bbbbbb",
default: {
DEFAULT: "#999999",
50: "#eeeeee",
100: "#cccccc",
200: "#aaaaaa",
300: "#999999",
400: "#888888",
500: "#686868",
600: "#585858",
700: "#484848",
800: "#383838",
900: "#282828"
},
primary: {
foreground: "#ffffff",
DEFAULT: "#3578e5"
}
},
},
},
})]
}