Skip to content

Commit

Permalink
Fix accent colors not applying (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcustyphoon authored Jun 2, 2024
1 parent 9dd187d commit bb0c956
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ const applyCurrentPalette = async function () {
? await paletteData
: await browser.storage.local.get(currentPalette);

currentPaletteData['deprecated-accent'] = currentPaletteData.accent;
delete currentPaletteData.accent;

const currentPaletteKeys = Object.keys(currentPaletteData);
const currentPaletteEntries = Object.entries(currentPaletteData);

Expand Down

0 comments on commit bb0c956

Please sign in to comment.