-
Notifications
You must be signed in to change notification settings - Fork 19
/
tailwind.config.js
58 lines (57 loc) · 1.3 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const defaultTheme = require('tailwindcss/defaultTheme')
const plugin = require('tailwindcss/plugin')
module.exports = {
content: [
'./templates/**/*.tmpl',
'./public/js/**/*.js',
],
theme: {
typography: (theme) => ({
default: {
css: {
a: {
color: theme('colors.teal.600'),
'&:hover': {
color: theme('colors.teal.700'),
},
},
'ul > li::before': {
backgroundColor: theme('colors.teal.600'),
},
},
},
}),
extend: {
colors: {
teal: {
50: '#F9FEFF',
100: '#C0EAF4',
200: '#98D7E6',
300: '#7DC3D3',
400: '#6FB1C4',
500: '#6199AF',
600: '#507B92',
700: '#3C576C',
800: '#233040',
900: '#0A0A12',
},
orange: {
...defaultTheme.colors.orange,
400: '#F3A856',
500: '#F7941E',
600: '#ae641b',
700: '#A55302',
800: '#944a01',
}
},
fontFamily: {
'sans': ['Montserrat', ...defaultTheme.fontFamily.sans],
'display': ['Germania\\ One', 'cursive'],
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
}