-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
98 lines (96 loc) · 1.9 KB
/
tailwind.config.cjs
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* eslint-disable prettier/prettier */
/* eslint-disable global-require */
/* eslint-disable import/no-extraneous-dependencies */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
screens: {
sm: '576px', // => @media (min-width: 576px) { ... }
md: '800px', // => @media (min-width: 800px) { ... }
lg: '1024px', // => @media (min-width: 1024px) { ... }
},
fontFamily: {
serif: [
'"Noto Serif TC"',
'"Roboto Mono"',
...defaultTheme.fontFamily.serif,
],
},
extend: {
typography: {
DEFAULT: {
css: {
h1: {
fontWeight: 600
},
p: {
textAlign: 'justify',
letterSpacing: 0.5
},
a: {
textUnderlineOffset: '5px'
},
img: {
borderRadius: '8px',
width: '100%',
margin: '0 auto'
},
pre: {
borderRadius: '8px',
},
code: {
backgroundColor: '#269',
color: '#fff',
padding: '4px',
borderRadius: '4px',
fontWeight: '100',
fontSize: '0.5rem'
},
th: {
padding: '15px 0',
},
'code::before': {
content: 'none',
},
'code::after': {
content: 'none',
},
'blockquote p:first-of-type::before': {
content: 'none',
},
'blockquote p:last-of-type::after': {
content: 'none',
},
'figcaption': {
letterSpacing: '0.75px'
}
}
},
base: {
css: {
h1: {
lineHeight: 1.5
}
}
},
lg: {
css: {
h1: {
lineHeight: 1.5
},
img: {
margin: '0 auto'
},
}
}
},
colors: {
white: '#ffffff',
primary: '#091825',
},
},
},
plugins: [require('@tailwindcss/typography')],
};