-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.31 KB
/
tailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.31 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
mainRegular: ["Inter-Regular", "sans-serif"],
mainMedium: ["Inter-Medium", "sans-serif"],
mainSemibold: ["Inter-SemiBold", "sans-serif"],
},
colors: {
gray: {
100: "#DADADA",
200: "#ECECEC",
300: "#F2F2F2",
600: "#E7E7E7",
},
"white-80": "rgba(255, 255, 255, 0.80)",
surfacePrimary: "#FFFFFF",
textPrimary: "#111111",
textSecondary: "#888888",
primitives: {
50: "#F6F6F6",
100: "#E7E7E7",
},
blue: {
300: "#5065E4",
600: "#3E54DA",
900: '#364DD8'
},
purple: {
300: "#8247E5",
600: "#7639DD",
900: "#6C2CD6",
},
success: "#0DAB31",
"success-16": "rgba(13, 171, 49, 0.16)",
error: "#AB0D0D",
"error-16": "rgba(171, 13, 13, 0.16)",
},
backgroundImage: {
linearWhite: "linear-gradient(129deg, #FCFCFC 9.57%, #F9F9F9 89.79%)",
},
fontSize: {
xs: "12px",
sm: "14px",
xl: "20px",
'2xl': "24px"
},
},
},
plugins: [],
};