-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
tailwind.config.js
37 lines (35 loc) · 1011 Bytes
/
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
const {nextui} = require("@nextui-org/react");
const colors = require("tailwindcss/colors");
// Suppress deprecation warnings during build
delete colors.lightBlue;
delete colors.warmGray;
delete colors.trueGray;
delete colors.coolGray;
delete colors.blueGray;
module.exports = {
darkMode: "class",
content: ["./src/renderer/**/*.{js,jsx,ts,tsx,ejs}", "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"],
mode: "jit",
plugins: [require("tailwindcss-scoped-groups")({ groups: ["one"] }), nextui()],
theme: {
colors: {
...colors,
"main-color": {
1: "#202225",
2: "#2C2F33",
3: "#40444b",
},
"light-main-color": {
1: "#E3E5E8",
2: "#F2F3F5",
3: "#FFFFFF",
},
},
extend: {
keyframes: {},
boxShadow: {
center: "0px 0px 8px 0px",
},
},
},
};