-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
109 lines (109 loc) · 2.6 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
102
103
104
105
106
107
108
109
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
fold: "300px",
},
},
fontSize: {
xs: ["0.75rem", "1.125rem"],
sm: ["0.88rem", "1.25rem"],
md: ["1rem", "1.5rem"],
lg: ["1.12rem", "1.75rem"],
xl: ["1.25rem", "1.875rem"],
"display-xs": ["1.5rem", "2rem"],
"display-sm": ["1.88rem", "2.25rem"],
"display-md": ["2.25rem", "2.75rem"],
"display-lg": ["3rem", "3.75rem"],
"display-xl": ["3.75rem", "4.5rem"],
"display-2xl": ["4.5rem", "5rem"],
},
colors: {
white: "#ffffff",
black: "#000000",
"status-bar": {
active: "#c50606",
inactive: "#a9a9a9",
"in-progress": "#fecdc9",
"in-progress-fill": "#fee4e2",
},
primary: {
"25": "#fffbfa",
"50": "#fef3f2",
"100": "#fee4e2",
"200": "#fecdca",
"300": "#fda29b",
"400": "#f97066",
"500": "#f04438",
"600": "#d92d20",
"700": "#b42318",
"800": "#912018",
"900": "#7a271a",
"950": "#55160c",
},
warning: {
"25": "#fffcf5",
"50": "#fffaeb",
"100": "#fef0c7",
"200": "#fedf89",
"300": "#fec84b",
"400": "#fdb022",
"500": "#f79009",
"600": "#dc6803",
"700": "#b54708",
"800": "#93370d",
"900": "#7a2e0e",
"950": "#4e1d09",
},
success: {
"25": "#f6fef9",
"50": "#ecfdf3",
"100": "#dcfae6",
"200": "#abefc6",
"300": "#75e0a7",
"400": "#47cd89",
"500": "#17b26a",
"600": "#079455",
"700": "#067647",
"800": "#085d3a",
"900": "#074d31",
"950": "#053321",
},
gray: {
"25": "#fcfcfd",
"50": "#f9fafb",
"100": "#f2f4f7",
"200": "#eaecf0",
"300": "#d0d5dd",
"400": "#98a2b3",
"500": "#667085",
"600": "#475467",
"700": "#344054",
"800": "#1d2939",
"900": "#101828",
"950": "#0c111d",
},
"blue-light": {
"25": "#f5fbff",
"50": "#f0f9ff",
"100": "#e0f2fe",
"200": "#b9e6fe",
"300": "#7cd4fd",
"400": "#36bffa",
"500": "#0ba5ec",
"600": "#0086c9",
"700": "#026aa2",
"800": "#065986",
"900": "#0b4a6f",
"950": "#062c41",
},
},
},
plugins: [],
};