diff --git a/background.html b/background.html
index 0314dde5d3e9..c4df972c28dd 100644
--- a/background.html
+++ b/background.html
@@ -29,7 +29,7 @@
diff --git a/main.js b/main.js
index f8e16c4c4f1d..775e160bec02 100644
--- a/main.js
+++ b/main.js
@@ -210,6 +210,10 @@ function createWindow() {
minWidth: MIN_WIDTH,
minHeight: MIN_HEIGHT,
autoHideMenuBar: false,
+ backgroundColor:
+ config.environment === 'test' || config.environment === 'test-lib'
+ ? '#ffffff' // Tests should always be rendered on a white background
+ : '#2090EA',
webPreferences: {
nodeIntegration: false,
nodeIntegrationInWorker: false,
diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss
index 4d348bd70d88..f21fe055993e 100644
--- a/stylesheets/_global.scss
+++ b/stylesheets/_global.scss
@@ -454,7 +454,8 @@ $loading-height: 16px;
right: 0;
top: 0;
bottom: 0;
- background-color: white;
+ background-color: $color-signal-blue;
+ color: $color-white;
display: flex;
align-items: center;
user-select: none;
@@ -478,7 +479,7 @@ $loading-height: 16px;
.dot {
width: 14px;
height: 14px;
- border: 3px solid $blue;
+ border: 3px solid $color-white;
border-radius: 50%;
float: left;
margin: 0 6px;