-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-config.cjs
84 lines (83 loc) · 1.99 KB
/
custom-config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "1024px",
xl: "1440px",
"2xl": "1680px",
"3xl": "1920px",
},
fontSize: {
xs: "0.875rem", // 14
sm: "1rem", // 16
base: "1.125rem", // 18
lg: "1.25rem", // 20
xl: "1.75rem", // 28
"2xl": "2.1875rem", // 35
"3xl": "3.25rem", // 52
"4xl": "4.5rem", // 72
"5xl": "5.75rem", // 92
hero: "calc(11500vw/1920)",
aboutTitle: "calc(4500vw/1440)",
contact: "calc(5700vw/1440)",
},
fontFamily: {
EudoxusVariable: ["EudoxusVariable"],
Eudoxus: ["Eudoxus"],
},
extend: {
colors: {
lightbackground: "#FFFFFF",
darkbackground: "#090A0B",
bluebackground: "#EAF5FB",
blue: "#07184F",
white: "#FFFFFF",
black: "#000000",
gray: "#C1C4CF",
violet: "#DA33D0",
gradientColor: [
"rgb(255,142,84)",
"rgba(218,51,208,1)",
"rgba(120,50,215,1)",
],
},
fontWeight: {
normal: "400",
medium: "500",
bold: "700",
},
borderRadius: {
xl: "16px",
},
keyframes: {
widthIn: {
"0%": { width: "0%" },
"100%": { width: "100%" },
},
widthOut: {
"0%": { width: "100%" },
"100%": { width: "0%" },
},
fadeLeft: {
"0%": { transform: "translateX(0%)" },
"100%": {
transform: "translateX(100%)",
display: "none",
},
},
fadeUp: {
"0%": { transform: "translateY(100%)" },
"100%": { transform: "translateY(-10%)" },
},
rotateY: {
"0%": { transform: "translateY(0%)" },
"100%": { transform: "translateY(425%)" },
},
},
},
},
plugins: [],
};