mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
8 lines
308 B
TypeScript
8 lines
308 B
TypeScript
export const changeAccentColor = (color: string) => {
|
|
document.body.setAttribute('data-accent-color', color)
|
|
}
|
|
|
|
const stateString = localStorage.getItem('state')
|
|
const stateInLocalStorage = stateString ? JSON.parse(stateString) : {}
|
|
|
|
changeAccentColor(stateInLocalStorage?.settings?.accentColor || 'blue')
|