-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (40 loc) · 928 Bytes
/
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
40
41
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontFamily: {
"title": ['"DM Serif Display"', "serif"],
"body": ["Source Sans Pro", "sans-serif"],
},
colors: {
transparent: 'transparent',
"black": "#010606",
"lightBlack": "#333333",
"brown-hover": "#e9be91",
"brown-light": "#d7af84",
"creme": "#ede6d9",
"oliv": "#919f84",
"hover": "#bcb8b8",
"white": "#f7f4f2",
"gray": "#808080",
},
extend: {
width: {
"hrWidth": "600px",
"1200": "1200px",
"550": "550px",
},
height: {
"hrHeight": "1px",
"620": "620px",
"820": "820px",
},
},
},
plugins: [],
};
export default config;