generated from BartoszJarocki/jarocki.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1002 Bytes
/
tailwind.config.js
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
module.exports = {
content: ['./app/**/*.{tsx,jsx,ts,js}'],
plugins: [require('@tailwindcss/typography')],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: [
'LXGW WenKai Screen',
'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',
],
mono: [
'LXGW WenKai Mono Screen',
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
],
},
colors: {
primary: '#F1A661',
'primary-light': '#FFD8A9',
'primary-dark': '#E38B29',
},
},
},
}