Skip to content

Commit 41fe3f1

Browse files
committed
fix: Improved text visibility on light backgrounds
1 parent fca180c commit 41fe3f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js_modules/load_preferences.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function backgroundImage(value) {
4747
break;
4848
};
4949
case 'shown': {
50-
overlay.style.backgroundColor = 'rgba(0, 0, 0, 0.375)';
50+
overlay.style.backgroundColor = 'rgba(0, 0, 0, 0.5)';
5151
// console.log(value);
5252
break;
5353
};

style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ body {
150150
left: 0;
151151
right: 0;
152152
bottom: 0;
153-
background-color: rgba(0, 0, 0, .375);
153+
background-color: rgba(0, 0, 0, .5);
154154
z-index: 0;
155155
cursor: auto;
156156
transition: .3s

0 commit comments

Comments
 (0)