-
Notifications
You must be signed in to change notification settings - Fork 47
/
tailwind.config.js
51 lines (50 loc) · 1.11 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./pages/**/*.{html,js,vue}',
'./components/**/*.{html,js,vue}',
'./layouts/**/*.{html,js,vue}',
'./content/**/*.{md,vue}'
],
theme: {
extend: {
width: {
'15': '3.75rem',
'30': '7.5rem'
},
height: {
'15': '3.75rem',
'30': '7.5rem'
},
screens: {
'short': { 'raw': '(max-height: 500px)' }
},
colors: {
// bg: '#1e272e',
bg: '#373838',
yellowgreen: 'yellowgreen',
primary: '#262626',
accent: '#1ad691',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
successDark: '#3b8a3e',
warning: '#FB8C00'
},
cursor: {
none: 'none'
},
fontFamily: {
sans: ['Open Sans', ...defaultTheme.fontFamily.sans],
mono: ['Ubuntu Mono', ...defaultTheme.fontFamily.mono],
book: ['Gentium Book Basic', 'serif']
}
}
},
variants: {
extend: {}
},
plugins: [
require('@tailwindcss/typography')
]
}