Skip to content

Commit

Permalink
Add alpha values for album background color in dark mode
Browse files Browse the repository at this point in the history
Fixes transparency not working and doesn't affect anything when transparency is not enabled.
  • Loading branch information
JadeTank committed Feb 7, 2024
1 parent 487c0c8 commit 1d47504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions themes/eole/js/WSHgraphicbrowser_trackinfos.js
Original file line number Diff line number Diff line change
Expand Up @@ -6929,11 +6929,11 @@ function get_colors() {
colors.showlist_arrow = colors.showlist_bg;
if(properties.darklayout){
if(globalProperties.colorsMainPanel==0 || globalProperties.colorsMainPanel==1){
colors.showlist_bg = GetGrey(25);
colors.showlist_bg = GetGrey(0, 25);
colors.showlist_arrow = GetGrey(25,255);
colors.showlist_border_color = GetGrey(255,30);
} else if(globalProperties.colorsMainPanel==2){
colors.showlist_bg = GetGrey(25);
colors.showlist_bg = GetGrey(0, 25);
colors.showlist_border_color = GetGrey(255,50);
}
colors.grad_bottom_1 = GetGrey(0,70);
Expand Down

0 comments on commit 1d47504

Please sign in to comment.