Add custom theme option

This commit is contained in:
Ariful Alam
2022-03-23 02:13:51 +06:00
parent 4013491663
commit 725091dc52
5 changed files with 72 additions and 8 deletions

View File

@@ -1,4 +1,6 @@
module.exports = {
import config from './gitprofile.config';
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
@@ -6,5 +8,6 @@ module.exports = {
plugins: [require('daisyui')],
daisyui: {
logs: false,
themes: [...config.themeConfig.themes, config.themeConfig.customTheme],
},
};