diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss
index 91d71c3bc..fcc3e6be2 100644
--- a/stylesheets/_global.scss
+++ b/stylesheets/_global.scss
@@ -215,6 +215,7 @@ $loading-height: 16px;
}
.message {
-webkit-user-select: text;
+ user-select: text;
max-width: 35em;
}
diff --git a/ts/components/registration/SignInTab.tsx b/ts/components/registration/SignInTab.tsx
index 70cd670fd..fa1f4c7fb 100644
--- a/ts/components/registration/SignInTab.tsx
+++ b/ts/components/registration/SignInTab.tsx
@@ -191,7 +191,7 @@ export const SignInTab = () => {
left: 0,
right: 0,
pointerEvents: 'all',
- backgroundColor: '#00000088',
+ backgroundColor: 'var(--background-primary-color)',
}}
>
diff --git a/ts/themes/colors.tsx b/ts/themes/colors.tsx
index d4e9bf209..af75226e3 100644
--- a/ts/themes/colors.tsx
+++ b/ts/themes/colors.tsx
@@ -118,7 +118,7 @@ type ThemeColors = {
COLOR4: string;
COLOR5: string;
COLOR6: string;
- COLOR7?: string; // Only used with Ocean Light
+ COLOR7?: string; // Only used with Ocean Themes
};
type Themes = Record;