-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
86 lines (77 loc) · 1.67 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
/** @type {import('tailwindcss').Config} */
module.exports = {
important: true,
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
screens: {
mobileS: {min: "480px"},
mobile: {min: "640px"},
mobileM: {min: "700px"},
tablet: {min: "767px"},
tabletM: {min: "901px"},
tabletL: {min: "962px"},
desktop: {min: "1025px"},
desktopM: {min: "1200px"},
desktopL: {min: "1535px"},
},
fontSize: {
cxs: "10px",
xxs: "12px",
xs: "14px",
sm: "16px",
base: "18px",
md: "20px",
normal: "23px",
lg: "30px",
clg: "32px",
xl: "40px",
xxl: "46px",
},
fontFamily: {
header: ["Omnes", "sans-serif"],
},
borderWidth: {
1: "1px",
1.5: "1.5px",
0.2: "0.2px",
},
borderRadius: {4: "4px"},
boxShadow: {
"c-sm": "0 2px 10px -5px rgba(0, 0, 0, 0.2)",
"c-md": "0 2px 80px -15px rgba(0, 0, 0, 0.1)",
},
extend: {
colors: {
"c-white": "#FFFFFF",
"c-blue": "#119EE0",
"c-fblue": "#3975ea",
"c-light-yellow": "#F7F0CC",
"c-green": "#D0E6C2",
"c-purple": "#F0ECF4",
"c-pink": "#ECBAAD",
"c-lavender": "#EBEAF1",
"c-yellow": "#F6EFC6",
"c-lime": "#CBE2AE",
"c-gray-light": "#EEEEEE",
"c-gray-medium": "#858585",
"c-section-gray": "#F2F3F5",
"c-gray": "#E4E4E4",
"c-font-gray": "#202125",
"c-footer-gray": "#141414",
"c-black": "#000000",
},
backgroundColor: (theme) => theme("colors"),
textColor: (theme) => theme("colors"),
gridTemplateColumns: {
auto: "repeat(auto-fill,minmax(220px,1fr))",
},
transitionProperty: {
height: "height",
},
variants: {
height: ["responsive", "hover", "focus"],
},
},
},
plugins: [],
};