-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (32 loc) · 908 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (32 loc) · 908 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
26
27
28
29
30
31
32
33
34
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backdropBlur: {
'md': '10px',
},
colors: {
primary: {
DEFAULT: "#0A0A0A", // Jet Black
foreground: "#FFFFF0", // Ivory text on primary
},
background: "#FFFFF0", // Ivory
border: "#0A0A0A", // Jet Black border
text: "#0A0A0A", // Jet Black text
},
fontFamily: {
aktura: ['var(--font-aktura)', 'sans-serif'],
harmond: ['var(--font-harmond)', 'sans-serif'],
mathos: ['var(--font-mathos)', 'sans-serif'],
'mathos-bold': ['var(--font-mathos-bold)', 'sans-serif'],
},
},
},
plugins: [],
}