2024-01-09 13:30:05 +01:00
|
|
|
const withMT = require('@material-tailwind/react/utils/withMT')
|
|
|
|
|
|
|
|
module.exports = withMT({
|
2024-03-12 15:02:18 +01:00
|
|
|
darkMode: 'selector',
|
2024-01-09 13:30:05 +01:00
|
|
|
content: ['./renderer/pages/**/*.{js,ts,jsx,tsx}', './renderer/components/**/*.{js,ts,jsx,tsx}'],
|
2023-11-01 17:20:27 +01:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
2024-01-09 13:30:05 +01:00
|
|
|
blue: {
|
|
|
|
950: '#0B2A68'
|
2023-11-01 17:20:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-09 13:30:05 +01:00
|
|
|
},
|
|
|
|
plugins: []
|
|
|
|
})
|