-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
52 lines (51 loc) · 1.16 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
import type {Config} from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'
module.exports = <Partial<Config>>{
content: [
'utils/**/*.ts',
'content/**/*.md'
],
theme: {
extend: {
fontFamily: {
sans: ['Open Sans', ...defaultTheme.fontFamily.sans],
display: ['IBM Plex Sans', ...defaultTheme.fontFamily.sans],
},
colors: {
brown: {
50: '#efebe9',
100: '#d7ccc8',
200: '#bcaaa4',
300: '#a1887f',
400: '#8d6e63',
500: '#795548',
600: '#6d4c41',
700: '#5d4037',
800: '#4e342e',
900: '#3e2723',
},
},
spacing: {
'0.25': '0.0625rem',
},
transitionProperty: {
height: 'height',
width: 'width',
sizes: 'height, width',
spacing: 'margin, padding',
border: 'border-radius',
},
animation: {
loader: 'spin 1s steps(8, end) infinite',
},
},
},
future: {
hoverOnlyWhenSupported: true,
},
darkMode: 'class',
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
}