-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.25 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
const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: [
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
"index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
"sm-regular": "Space Mono Regular, monospace",
"sm-bold": "Space Mono Bold, monospace",
},
colors: {
blue: "hsl(212, 100%, 50%)",
"light-blue": "hsl(217, 20%, 51%)",
"dark-blue": "hsl(217, 35%, 45%)",
"dark-blue-darker": "hsl(222, 41%, 20%)",
"very-dark-blue": "hsl(217, 21%, 21%)",
"very-dark-blue-darker": "hsl(220, 40%, 13%)",
"very-light-blue": "hsl(227, 100%, 98%)",
},
},
},
plugins: [
nextui({
themes: {
light: {
colors: {
default: "#000",
primary: "hsl(217, 21%, 21%)",
secondary: "hsl(217, 20%, 51%)",
warning: "#eab308",
},
},
dark: {
colors: {
default: "#fff",
primary: "hsl(220, 40%, 13%)",
secondary: "hsl(227, 100%, 98%)",
warning: "#eab308",
},
},
},
}),
],
};