-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
38 lines (37 loc) · 1.06 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-monument)"],
},
backgroundImage: {
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, #ACACAC51 0deg, #F1F1F151 360deg)",
"gradient-grid-white":
"linear-gradient(transparent 49.5%, white 50%, transparent 50.5%), linear-gradient(90deg, transparent 49.5%, white 50%, transparent 50.5%)",
"gradient-grid-black":
"linear-gradient(black 1px, transparent 1px), linear-gradient(90deg, black 1px, transparent 1px)",
},
colors: {
primary: "#9969FF",
"primary-light": "#C7ACFF",
orange: "#FFCAA4",
green: "#D1F279",
},
fontSize: {
giant: ["234px", "324px"],
},
spacing: {
"15": "3.75rem",
"1/8": "12.5%",
},
},
},
plugins: [],
};