-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
101 lines (99 loc) · 2.61 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* eslint-disable no-undef */
// 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: {},
screens: {
xs: "480px", // Small phones
sm: "640px", // Standard phones, small tablets
md: "768px", // Small tablets, portrait tablets
lg: "1024px", // Tablets, small laptops
xl: "1281px", // Laptops, desktops
"2xl": "1536px", // Large desktops
},
},
darkMode: "class",
plugins: [
nextui({
themes: {
light: {
colors: {
foreground: "#000000",
background: "#fafafa",
secondary: {
DEFAULT: "#293957",
foreground: "#eaf1ff",
50: "#eaf1ff",
100: "#cad5ea",
200: "#a8b8d6",
300: "#869cc5",
400: "#6580b4",
500: "#4b679a",
600: "#3a5079",
700: "#293957",
800: "#162236",
900: "#040b17",
},
primary: {
DEFAULT: "#bb2a44",
foreground: "#ffe6ec",
50: "#ffe6ec",
100: "#f6bfc8",
200: "#e996a5",
300: "#df6c81",
400: "#d5445d",
500: "#bb2a44",
600: "#932035",
700: "#6a1625",
800: "#410a16",
900: "#1d0007",
},
focus: "#932035",
},
},
dark: {
colors: {
foreground: "#ffffff",
background: "#121212",
secondary: {
foreground: "#293957",
DEFAULT: "#eaf1ff",
50: "#eaf1ff",
100: "#cad5ea",
200: "#a8b8d6",
300: "#869cc5",
400: "#6580b4",
500: "#4b679a",
600: "#3a5079",
700: "#293957",
800: "#162236",
900: "#040b17",
},
primary: {
DEFAULT: "#bb2a44",
foreground: "#ffe6ec",
50: "#ffe6ec",
100: "#f6bfc8",
200: "#e996a5",
300: "#df6c81",
400: "#d5445d",
500: "#bb2a44",
600: "#932035",
700: "#6a1625",
800: "#410a16",
900: "#1d0007",
},
focus: "#932035",
},
},
},
}),
],
};