feat: tab colors from centralized data
This commit is contained in:
parent
57caa75b99
commit
4d11db3a33
4 changed files with 167 additions and 31 deletions
17
tailwind.config.js
Normal file
17
tailwind.config.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
const colors = require('tailwindcss/colors')
|
||||
|
||||
module.exports = {
|
||||
purge: [],
|
||||
darkMode: false, // or 'media' or 'class'
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
...colors,
|
||||
},
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in a new issue