mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-01-18 21:36:27 +01:00
36 lines
702 B
JavaScript
36 lines
702 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
const colors = {
|
|
'toolbar': 'rgba(28, 28, 32, .95)'
|
|
};
|
|
|
|
const boxShadow = {
|
|
};
|
|
|
|
module.exports = {
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: [ 'Ubuntu', 'sans-serif' ],
|
|
},
|
|
colors,
|
|
boxShadow,
|
|
height: {
|
|
'toolbar': '55px'
|
|
},
|
|
zIndex: {
|
|
'toolbar': ''
|
|
}
|
|
},
|
|
},
|
|
darkMode: 'class',
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@headlessui/tailwindcss')({ prefix: 'ui' })
|
|
],
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{html,js,jsx,ts,tsx}'
|
|
]
|
|
}
|