autobrr/web/tailwind.config.js
Raghu Saxena 0076ea9129
chore: update web dependencies (#102)
* chore: update deps

* chore: remove craco

* chore: fix exports

* fix: filters list indexer bg

* fix: extend theme with correct color
2022-02-05 13:27:44 +01:00

36 lines
713 B
JavaScript

const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./src/**/*.{tsx,ts,html,css}',
],
safelist: [
'col-span-1',
'col-span-2',
'col-span-3',
'col-span-4',
'col-span-5',
'col-span-6',
'col-span-7',
'col-span-8',
'col-span-9',
'col-span-10',
'col-span-11',
'col-span-12',
],
// purge: false,
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
gray: colors.zinc,
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
],
}