10 lines
240 B
TypeScript
Executable File
10 lines
240 B
TypeScript
Executable File
import {themeEl} from '@common/core/root-el';
|
|
|
|
export function setThemeValue(key: string, value: string) {
|
|
themeEl?.style.setProperty(key, value);
|
|
}
|
|
|
|
export function removeThemeValue(key: string) {
|
|
themeEl?.style.removeProperty(key);
|
|
}
|