mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 04:17:13 +00:00
Remove custom theme node to support in package
This commit is contained in:
32
README.md
32
README.md
@@ -193,15 +193,13 @@ const config = {
|
|||||||
|
|
||||||
// Custom theme
|
// Custom theme
|
||||||
customTheme: {
|
customTheme: {
|
||||||
procyon: {
|
primary: '#fc055b',
|
||||||
primary: '#fc055b',
|
secondary: '#219aaf',
|
||||||
secondary: '#219aaf',
|
accent: '#e8d03a',
|
||||||
accent: '#e8d03a',
|
neutral: '#2A2730',
|
||||||
neutral: '#2A2730',
|
'base-100': '#E3E3ED',
|
||||||
'base-100': '#E3E3ED',
|
'--rounded-box': '3rem',
|
||||||
'--rounded-box': '3rem',
|
'--rounded-btn': '3rem',
|
||||||
'--rounded-btn': '3rem',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -234,15 +232,13 @@ module.exports = {
|
|||||||
// ...
|
// ...
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
customTheme: {
|
customTheme: {
|
||||||
procyon: {
|
primary: '#fc055b',
|
||||||
primary: '#fc055b',
|
secondary: '#219aaf',
|
||||||
secondary: '#219aaf',
|
accent: '#e8d03a',
|
||||||
accent: '#e8d03a',
|
neutral: '#2A2730',
|
||||||
neutral: '#2A2730',
|
'base-100': '#E3E3ED',
|
||||||
'base-100': '#E3E3ED',
|
'--rounded-box': '3rem',
|
||||||
'--rounded-box': '3rem',
|
'--rounded-btn': '3rem',
|
||||||
'--rounded-btn': '3rem',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
// ...
|
// ...
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -137,15 +137,13 @@ const config = {
|
|||||||
|
|
||||||
// Custom theme
|
// Custom theme
|
||||||
customTheme: {
|
customTheme: {
|
||||||
procyon: {
|
primary: '#fc055b',
|
||||||
primary: '#fc055b',
|
secondary: '#219aaf',
|
||||||
secondary: '#219aaf',
|
accent: '#e8d03a',
|
||||||
accent: '#e8d03a',
|
neutral: '#2A2730',
|
||||||
neutral: '#2A2730',
|
'base-100': '#E3E3ED',
|
||||||
'base-100': '#E3E3ED',
|
'--rounded-box': '3rem',
|
||||||
'--rounded-box': '3rem',
|
'--rounded-btn': '3rem',
|
||||||
'--rounded-btn': '3rem',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ export default {
|
|||||||
plugins: [require('daisyui')],
|
plugins: [require('daisyui')],
|
||||||
daisyui: {
|
daisyui: {
|
||||||
logs: false,
|
logs: false,
|
||||||
themes: [...config.themeConfig.themes, config.themeConfig.customTheme],
|
themes: [
|
||||||
|
...config.themeConfig.themes,
|
||||||
|
{ procyon: config.themeConfig.customTheme },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user