mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 20:00:25 +00:00
Remove custom theme node to support in package
This commit is contained in:
@@ -193,7 +193,6 @@ const config = {
|
||||
|
||||
// Custom theme
|
||||
customTheme: {
|
||||
procyon: {
|
||||
primary: '#fc055b',
|
||||
secondary: '#219aaf',
|
||||
accent: '#e8d03a',
|
||||
@@ -203,7 +202,6 @@ const config = {
|
||||
'--rounded-btn': '3rem',
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
```
|
||||
|
||||
@@ -234,7 +232,6 @@ module.exports = {
|
||||
// ...
|
||||
themeConfig: {
|
||||
customTheme: {
|
||||
procyon: {
|
||||
primary: '#fc055b',
|
||||
secondary: '#219aaf',
|
||||
accent: '#e8d03a',
|
||||
@@ -243,7 +240,6 @@ module.exports = {
|
||||
'--rounded-box': '3rem',
|
||||
'--rounded-btn': '3rem',
|
||||
},
|
||||
},
|
||||
// ...
|
||||
},
|
||||
};
|
||||
|
||||
@@ -137,7 +137,6 @@ const config = {
|
||||
|
||||
// Custom theme
|
||||
customTheme: {
|
||||
procyon: {
|
||||
primary: '#fc055b',
|
||||
secondary: '#219aaf',
|
||||
accent: '#e8d03a',
|
||||
@@ -147,7 +146,6 @@ const config = {
|
||||
'--rounded-btn': '3rem',
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
||||
@@ -8,6 +8,9 @@ export default {
|
||||
plugins: [require('daisyui')],
|
||||
daisyui: {
|
||||
logs: false,
|
||||
themes: [...config.themeConfig.themes, config.themeConfig.customTheme],
|
||||
themes: [
|
||||
...config.themeConfig.themes,
|
||||
{ procyon: config.themeConfig.customTheme },
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user