-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 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
45
46
47
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
important: true,
theme: {
screens: {
sm: "480px",
md: "900px",
lg: "1280px",
xl: "1440px",
print: { 'raw': 'print' },
},
fontSize: {
"xs": ["10px", "18px"],
"sm": ["12px", "20px"],
"md": ["14px", "24px"],
"lg": ["16px", "28px"],
"xl": ["20px", "30px"],
"2xl": ["24px", "30px"],
"3xl": ["30px", "38px"],
},
extend: {
aspectRatio: {
a4: "0.707",
},
colors: {
"error": "#9C0013",
"error-subtle": "#E5D0CE",
"success": "#00884F",
"success-subtle": "#CCE3D5",
"warning": "#D46600",
"warning-subtle": "#F2D5B3",
},
spacing: {
xs: "4px",
sm: "8px",
md: "16px",
lg: "24px",
xl: "40px",
page: "768px",
},
textColor: {
primary: "#000000",
secondary: "#344054",
tertiary: "#667085",
placeholder: "#D0D5DD",
disabled: "#667085",
},
},
},
plugins: [],
}