17 lines
343 B
JavaScript
17 lines
343 B
JavaScript
const withMT = require('@material-tailwind/react/utils/withMT')
|
|
|
|
module.exports = withMT({
|
|
darkMode: 'selector',
|
|
content: ['./renderer/pages/**/*.{js,ts,jsx,tsx}', './renderer/components/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
blue: {
|
|
950: '#0B2A68'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
})
|