-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
125 lines (120 loc) · 3.03 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontSize: {
xxlarge36: ["2.25rem", { lineHeight: "3rem" }],
xxlarge32: ["2rem", { lineHeight: "2.625rem" }],
xlarge28: ["1.75rem", { lineHeight: "2.375rem" }],
large26: ["1.625rem", { lineHeight: "2.125rem" }],
medium24: ["1.5rem", { lineHeight: "2rem" }],
medium22: ["1.375rem", { lineHeight: "1.875rem" }],
small20: ["1.25rem", { lineHeight: "1.75rem" }],
small18: ["1.125rem", { lineHeight: "1.625rem" }],
xsmall16: ["1rem", { lineHeight: "1.5rem" }],
xsmall14: ["0.875rem", { lineHeight: "1.25rem" }],
xxsmall12: ["0.75rem", { lineHeight: "1rem" }],
xxsmall11: ["0.67rem", { lineHeight: "1rem" }],
},
borderWidth: {
1.5: "1.5px",
},
screens: {
xs: "390px",
sm: "640px",
md: "768px",
lg: "991px",
xl: "1280px",
"2xl": "1440px",
},
borderRadius: {
none: "0",
xxs: "0.25rem",
xs: "0.375rem",
sm: "0.5rem",
md: "0.75rem",
lg: "1rem",
xl: "1.25rem",
xxl: "1.5rem",
full: "9999px",
},
colors: {
primary: {
120: "#4138A3",
100: "#4D55F5",
90: "#6269F6",
80: "#7177F7",
70: "#8288F8",
60: "#9499F9",
50: "#A6AAFA",
40: "#B8BBFB",
30: "#CACCFC",
20: "#DBDDFD",
10: "#EDEEFE",
0: "#FFFFFF",
DEFAULT: "#4D55F5",
dark: "#4138A3",
light: "#757BFF",
xlight: "#A9C1FF",
},
secondary: {
100: "#1BC47D",
90: "#32CA8A",
80: "#49D097",
70: "#60D6A4",
60: "#76DCB1",
50: "#8DE1BE",
40: "#8CE1BD",
30: "#BBEED8",
20: "#D1F3E5",
10: "#E9FAF2",
0: "#FFFFFF",
DEFAULT: "#1BC47D",
dark: "#009C89",
light: "#43EC91",
},
teritory: {
0: "#FFFFFF",
normal: "#CB81F2",
light: "#FBF2FF",
},
point: "#DAFF7C",
system: {
"positive-green": "#1BC47D",
"positive-blue": "#5177FF",
error: "#F64E39",
},
static: {
100: "#FFFFFF",
0: "#000000",
},
neutral: {
0: "#27272D",
10: "#2A2D34",
20: "#3E4148",
30: "#4C4F56",
35: "#5C5F66",
40: "#7A7D84",
45: "#989BA2",
50: "#ACAFB6",
60: "#BDBDBD",
70: "#CFCFCF",
75: "#D8D8D8",
80: "#E7E7E7",
85: "#EFEFEF",
90: "#F3F3F3",
95: "#F9F9F8",
100: "#FAFAFA",
},
schemes: {
outline_variant: "#CAC4D0",
},
system: {
error: "#F65E39",
},
},
},
},
plugins: [],
};