-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
44 lines (43 loc) · 1013 Bytes
/
tailwind.config.ts
File metadata and controls
44 lines (43 loc) · 1013 Bytes
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
const config = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
"primary-normal": "#5C4AE8",
"primary-light": "#C8CDFF",
"primary-pale": "#EBEDFF",
"secondary-normal": "#ADE700",
"secondary-light": "#D3EF7F",
"secondary-pale": "#DEF599",
"gray-50": "#F0F2F5",
"gray-100": "#E6E8ED",
"gray-200": "#CFD4DB",
"gray-300": "#AEB4BD",
"gray-400": "#929AA4",
"gray-500": "#848C96",
"gray-600": "#585D65",
"gray-700": "#43474E",
"gray-800": "#353940",
"gray-900": "#2B2E33",
background: "#D0D5DD",
foreground: "#000000"
},
fontSize: {
"3xl": "24px",
"2xl": "20px",
xl: "18px",
lg: "16px",
md: "14px",
sm: "12px",
xs: "10px"
},
screens: {
sm: "345px",
md: "375px",
lg: "500px"
}
}
},
plugins: []
};
export default config;