9 lines
278 B
TypeScript
Raw Normal View History

export const changeAccentColor = (color: string) => {
document.body.setAttribute('data-accent-color', color)
}
const stateString = localStorage.getItem('state')
const state = stateString ? JSON.parse(stateString) : {}
changeAccentColor(state.settings.accentColor || 'blue')