-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
53 lines (52 loc) · 1.08 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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: {
fontSize: {
'64': '64px',
},
lineHeight: {
'80': '80px',
},
fontWeight: {
heavy: '900',
},
colors: {
"header-yellow": "#FBD922",
blackish: "#312411",
pale: "#FFE897",
brownish: "#826754"
},
fontFamily: {
sans: [
"Questrial",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"sans-serif",
],
},
boxShadow: {
custom: '0px 8px 40px #4232347D', // Custom shadow
},
borderRadius: {
'36': '36px',
'20': '20px',
},
minHeight: {
'screen-80': '80vh', // 90% of the viewport height
},
},
},
plugins: [],
};
export default config;