-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (58 loc) · 1.26 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// Path to all template files
// if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontSize: {
xs: "1rem",
sm: "1.2rem",
base: ["1.4rem", "2.1rem"],
lg: "1.6rem",
xl: "1.8rem",
"2xl": "3.6rem",
"3xl": "5.4rem",
},
extend: {
fontSize: {
heading1: `4.4rem`,
heading2: `3.2rem`,
heading3: `2.4rem`,
heading4: `1.6rem`,
paragraph: `1.4rem`,
},
fontFamily: {
Spline: ["Spline Sans", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
splineSans: ["Spline Sans", "sans-serif"],
},
colors: {
dark: `#161613`,
medium: `#B4B4B4`,
light: `#CBCBCB`,
primary: `#3A2ADC`,
background: `#F5F5ED`,
},
animation: {
shine: "shine 1s",
fadeIn: "fadeIn 0.5s forwards",
},
keyframes: {
shine: {
"100%": { left: "125%" },
},
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
height: {
footerDesktop: "5rem",
footerMobile: "7.9rem",
},
},
},
plugins: [],
};