-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (40 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["*"],
theme: {
colors: {
black: "#000000",
"gray-black": "#40434A",
"primary-color": "#009A9C",
"sec-color": "#DEF8E8",
"acc-color": "#EFEEEB",
"sorted-color": "#00e5ba",
//
"primary-gradient-color": "rgb(0,154,156)",
"primary-gradient-background":
"linear-gradient(90deg, rgba(0,154,156,1) 0%, rgba(222,248,232,1) 100%)",
"sec-gradient-color": "rgb(222, 248, 232)",
"sec-gradient-background":
" linear-gradient(90deg, rgba(222,248,232,1) 0%, rgba(239,238,235,1) 100%)",
},
screens: {
"2xl": { max: "1535px" },
// => @media (max-width: 1535px) { ... }
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1024px" },
// => @media (max-width: 1023px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
ss: { max: "425px" },
// => @media (min-width: 425px) { ... }
},
fontFamily: {
"main-font": `'Bebas Neue', cursive`,
},
extend: {},
},
plugins: [],
};