-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
79 lines (76 loc) · 1.7 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./index.html",
],
theme: {
extend: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
"3xl": "1920px",
},
colors: {
purple: {
DEFAULT: "#6A3EEC",
med: "#1A1244",
dark: "#110B2D",
light: "#4B38A74D",
},
muted: {
DEFAULT: "#FFFFFFCC",
dark: "#5B5966",
},
background: {
DEFAULT: "#110B2D",
},
border: {
DEFAULT: "#6E42F0",
light: "#5540BF66",
dark: "#2C2067",
},
},
fontFamily: {
pp: ["pp", "sans-serif"],
},
fontWeight: {
regular: "400",
medium: "500",
semibold: "600",
},
fontSize: {
8: "8px",
10: "10px",
12: "12px",
13: "13px",
14: "14px",
15: "15px",
16: "16px",
18: "18px",
20: "20px",
22: "22px",
24: "24px",
26: "26px",
28: "28px",
30: "30px",
32: "32px",
35: "35px",
},
backgroundImage: {
desktop: "url('/images/backgrounds/main-desktop.png')",
phone: "url('/images/backgrounds/main-phone.png')",
"balance-card": "url('/images/backgrounds/balance-card.png')",
//Gradiants
"purple-gradient": "linear-gradient(180deg, #6563FF 0%, #343193 100%)",
},
},
},
plugins: [],
};
export default config;