-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
25 lines (25 loc) · 862 Bytes
/
tailwind.config.js
File metadata and controls
25 lines (25 loc) · 862 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
inter: ["Inter", "sans-serif"],
montserrat: ["Montserrat", "sans-serif"],
},
backgroundImage: {
"purple-gradient": `linear-gradient(0deg, #662FFF, #662FFF),
linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%)`,
"dp-gradient":
"linear-gradient(0deg, #0B091C, #0B091C), linear-gradient(0deg, rgba(11, 9, 28, 0) 0%, rgba(102, 47, 255, 0.18) 100%), linear-gradient(174.1deg, rgba(11, 9, 28, 0) 56.76%, rgba(21, 94, 239, 0.04) 82.71%)",
},
colors: {
"slate-gray": "#6C737F",
navy: "#141C53",
ash: "#F8F9FB",
purple: "#662FFF",
},
},
},
plugins: [],
};