-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
65 lines (65 loc) · 1.43 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
mainPurple: "#1E1336",
lightPurple: "#7298FB",
mediumPurple: "#975EE0",
linkPurple: "#7E4EBE",
subtitlePurple: "#663A9E",
linkHover: "#5070CE",
buttonHover:"#8E57D5",
buttonPressed:"#8147CC",
lightButtonHover:"#F6F1FC",
lightButtonPressed:"#EEE4FB",
lightYellow: "#F9EEE3",
darkPink: "#E67A50",
bubblePink: "#FFD6DD",
bubbleYellow: "#FFE7C6",
bubbleBlue: "#CFDCFE",
bubblePurple: "#E9C2EA",
pink1: "#E9C2EA",
pink2: "#F9C2A1",
lightWhite1: "#E5E5E5",
lightWhite2: "#FEFEFE",
white: "#FFF",
black: "#000",
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
extend: {
borderRadius: {
sm: "10px",
},
fontSize: {
md: "1.25em",
mmd: "1.75em",
lg: "1.5em",
xl: "2em",
xxl: "2.375em",
},
spacing: {
1: "8px",
1.5: "10px",
2: "12px",
3: "16px",
4: "24px",
5: "32px",
5.5: "40px",
6: "48px",
7: "56px",
8: "64px",
9: "72px",
},
},
},
plugins: [require("@tailwindcss/typography")],
};