Skip to content

Commit

Permalink
fix(synth): # keys are displayed brighter than normal keys
Browse files Browse the repository at this point in the history
  • Loading branch information
domi7777 committed Nov 10, 2024
1 parent 7130edf commit 82b51c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scenes/SimpleSynthScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export class SimpleSynthScene extends PadsScene {
const color = super.getPadColor(numberOfPads, index);
const key = allFrequencies[index]?.key;
if (key?.includes('#')) {
return color.darken(150);
return color.darken(70);
}
return color.darken(60);
return color.darken(50);
}

playSound(index: number): void {
Expand Down

0 comments on commit 82b51c3

Please sign in to comment.