-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
44 lines (38 loc) · 1.12 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
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
darkMode: ["class"],
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
"2xl": { max: "1535px" },
// => @media (max-width: 1535px) { ... }
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
ad: { max: "851px" },
// => @media (max-width: 851px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
colors: {
primary: "#00AEE9",
board: "#F3F3F3",
fontPrimary: "#758796",
fontSecondary: "#55626D",
colorSeparator: "#E7ECF7",
darkColorSeparator: "#375873",
darkFontPrimary: "#F8F8F8",
darkPrimary: "#1B295E",
darkIconColor: "#69FABD",
darkHeaderColor: "#5F98C7",
darkViewColor: "#6fffb0",
},
},
},
plugins: [],
};