forked from github/plane
fix: custom theme validation added (#3246)
This commit is contained in:
parent
37d88cc05b
commit
542b18a585
@ -60,6 +60,7 @@ const calculateShades = (hexValue: string): TShades => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const applyTheme = (palette: string, isDarkPalette: boolean) => {
|
export const applyTheme = (palette: string, isDarkPalette: boolean) => {
|
||||||
|
if (!palette) return;
|
||||||
const dom = document?.querySelector<HTMLElement>("[data-theme='custom']");
|
const dom = document?.querySelector<HTMLElement>("[data-theme='custom']");
|
||||||
// palette: [bg, text, primary, sidebarBg, sidebarText]
|
// palette: [bg, text, primary, sidebarBg, sidebarText]
|
||||||
const values: string[] = palette.split(",");
|
const values: string[] = palette.split(",");
|
||||||
|
Loading…
Reference in New Issue
Block a user