blob: 56ec1d3e6d9d86e2adc5472e710bbda31e92a86b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module.exports = {
content: ["./*/*.{html,js}"],
theme: {
extend: {
colors: {
background: '#131517',
white: '#EEEEEE',
datesearch: '#6a6980',
bgsearch: '#1f1d29'
},
},
},
plugins: [
require('@tailwindcss/typography')
]
}
|