-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (50 loc) · 1.26 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 = {
purge: [
'./resources/**/*.html',
'./resources/**/*.svelte',
'./resources/**/*.blade.php',
'./resources/**/*.css',
],
theme: {
extend: {
fontFamily: {
sans: ['Fira Sans', ...defaultTheme.fontFamily.sans],
serif: ['Spectral', ...defaultTheme.fontFamily.serif]
},
colors: {
blue: {
'900': '#243644',
'800': '#39556a',
'600': '#0f81f9',
'500': '#3595fa',
'400': '#2d94fa',
'300': '#64b7fa',
'200': '#81ccfe',
'100': '#A8DCFE'
},
green: {
'900': '#09120d',
'800': '#1e3829',
'600': '#335e45',
'500': '#478561',
'400': '#5ea97e',
'300': '#84bd9c',
'100': '#aad2bb'
}
},
boxShadow: theme => ({
outline: '0 0 0 2px ' + theme('colors.green.500'),
}),
fill: theme => theme('colors'),
},
},
variants: {
fill: ['responsive', 'hover', 'focus', 'group-hover'],
textColor: ['responsive', 'hover', 'focus', 'group-hover'],
zIndex: ['responsive', 'focus'],
},
plugins: [
require('@tailwindcss/custom-forms'),
]
}