-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.js
40 lines (39 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontSize: {
"7xl": "6rem",
},
fontFamily: {
Montserrat: ["Montserrat", "sans-serif"],
wendy: ["Wendy One", "sans-serif"],
},
colors: {
"primary-blue": "#00D1FF",
"primary-pink": "#AD1AAF",
"dark-purple": "#4A235A",
},
backgroundImage: {
"subheading-gradient":
"linear-gradient(90.13deg, #FFFFFF 0%, #F81DFB 99.96%);",
"navbar-gradient":
"linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);",
"about-gradient":
"linear-gradient(147.75deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);",
"team-gradient":
"linear-gradient(147.75deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);",
},
},
fontFamily: {
heading: ["Oxanium", "cursive"],
body: ["Outfit", '"sans-serif"'],
},
},
plugins: [],
};