Whalebird-desktop-client-ma.../renderer/tailwind.config.js

17 lines
343 B
JavaScript
Raw Normal View History

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