-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
76 lines (73 loc) · 1.43 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{ts,tsx,mdx}',
'./components/**/*.{ts,tsx,mdx}',
'./app/**/*.{ts,tsx,mdx}',
],
media: false, // or 'darkmode' or 'class'
theme: {
extend: {
boxShadow: {
white: '0px 2px 4px 0px rgba(119, 119, 119, 0.25)',
},
colors: {
black: {
DEFAULT: '#020204',
},
yellow: {
DEFAULT: '#FFC700',
},
},
cursor: {
default: 'pointer',
},
lineHeight: {
compact: '3.5rem',
},
spacing: {
72: '18rem',
84: '21rem',
96: '24rem',
},
},
fontFamily: {
rubik: [
'Rubik',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Oxygen',
'Ubuntu',
'Cantarell',
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
'sans-serif',
],
inter: [
'Inter var',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji',
],
},
},
variants: {
extend: {},
},
plugins: [],
};
export default config;