1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2024-12-23 15:37:59 +01:00
Whalebird-desktop-client-ma.../renderer/tailwind.config.js
2024-03-22 00:59:53 +09:00

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: []
})