-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
33 lines (33 loc) · 1008 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
maxWidth: {
'container': '1200px' // max width of the page container
},
padding: { // padding for the container
'container-px': '1rem',
'container-px-md': '1.5rem'
},
colors: {
primary: 'var(--primary)',
secondary: 'var(--secondary)',
tertiary: 'var(--tertiary)',
complementPrimary: 'var(--complement-primary)',
complementSecondary: 'var(--complement-secondary)',
accent1: 'var(--accent-1)',
accent2: 'var(--accent-2)',
highlight: 'var(--highlight)',
navbar: 'var(--navbar)'
},
fontFamily: {
test: ['Times New Roman', 'serif'],
playfair: ['Playfair Display', 'serif'],
dmSans: ['DM Sans', 'sans-serif'],
inter: ['Inter', 'sans-serif'], // Add Inter font
},
},
},
plugins: [],
};