wireguard-dashboard-admin/public/resource/loading.js

10 lines
297 B
JavaScript
Raw Normal View History

2022-06-19 16:27:44 +08:00
function addThemeColorCssVars() {
2022-08-27 14:09:32 +08:00
const key = '__THEME_COLOR__'
const defaultColor = '#316c72'
const themeColor = window.localStorage.getItem(key) || defaultColor
const cssVars = `--primary-color: ${themeColor}`
document.documentElement.style.cssText = cssVars
2022-06-19 16:27:44 +08:00
}
2022-08-27 14:09:32 +08:00
addThemeColorCssVars()