-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
39 lines (38 loc) · 1.01 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
39
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"background": "var(--background)",
"foreground": "var(--foreground)",
"text-darken-1": "var(--text-darken-1)",
"text-darken-2": "var(--text-darken-2)",
"text-darken-3": "var(--text-darken-3)",
"text-base": "var(--text-base)",
"divider-grey": "var(--divider-grey)",
"primary-brown": "var(--primary-brown)",
"hover-grey": "var(--hover-grey)",
"hover-brown": "var(--hover-brown)"
},
fontSize: {
50: '50px',
64: '64px'
},
fontFamily: {
montserrat: ['Montserrat', 'sans-serif'],
},
spacing: {
15: '3.75rem', // 60px
18: '4.5rem', // 72px
25: '6.25rem', // 100px
}
},
},
plugins: [],
};
export default config;