-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
46 lines (44 loc) · 981 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
42
43
44
45
46
import type { Config } from 'tailwindcss';
const config: Config = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
gray: {
25: '#e8e6e3',
50: '#E0DDCF',
75: '#c0b4be',
100: '#8a8a8a',
125: '#777a7a',
150: '#686868',
175: '#4d5356',
},
},
spacing: {
50: '200px',
75: '300px',
125: '500px',
},
height: {
inherit: 'inherit',
'exclude-navigation': 'calc(100vh - 40px)',
},
maxHeight: {
'exclude-navigation': 'calc(100vh - 40px)',
},
weight: {
about: 'calc(100vh - 300px)',
},
},
},
plugins: [
// eslint-disable-next-line global-require
require('@tailwindcss/typography'),
],
};
export default config;