mihomo-party/tailwind.config.js

36 lines
689 B
JavaScript
Raw Normal View History

2024-07-30 11:17:41 +08:00
/** @type {import('tailwindcss').Config} */
const { nextui } = require('@nextui-org/react')
module.exports = {
content: [
'./src/renderer/src/**/*.{js,ts,jsx,tsx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {}
},
darkMode: 'class',
2024-07-30 21:18:53 +08:00
plugins: [
nextui({
themes: {
dark: {
colors: {
primary: {
DEFAULT: '#006FEE',
foreground: '#FFFFFF'
}
}
},
light: {
colors: {
primary: {
DEFAULT: '#41C3F8',
foreground: '#000000'
}
}
}
}
})
]
2024-07-30 11:17:41 +08:00
}