aboutsummaryrefslogtreecommitdiffstats
path: root/src/theme
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-21 11:35:00 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-21 11:35:00 +0100
commit2fc67d1c9bc2038179771238a0cb5d58995e05c3 (patch)
tree93aaaee39bf0ace0b53566ca4b5c2189ace2525c /src/theme
parentbump version to b22 (diff)
downloadferdium-app-2fc67d1c9bc2038179771238a0cb5d58995e05c3.tar.gz
ferdium-app-2fc67d1c9bc2038179771238a0cb5d58995e05c3.tar.zst
ferdium-app-2fc67d1c9bc2038179771238a0cb5d58995e05c3.zip
BasicAuth first draft
Diffstat (limited to 'src/theme')
-rw-r--r--src/theme/dark/index.js3
-rw-r--r--src/theme/default/index.js3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/theme/dark/index.js b/src/theme/dark/index.js
index fb1713184..429284f9e 100644
--- a/src/theme/dark/index.js
+++ b/src/theme/dark/index.js
@@ -11,3 +11,6 @@ export const colorText = legacyStyles.darkThemeTextColor;
11// Loader 11// Loader
12export const colorFullscreenLoaderSpinner = '#FFF'; 12export const colorFullscreenLoaderSpinner = '#FFF';
13export const colorWebviewLoaderBackground = hexToRgba(legacyStyles.darkThemeGrayDarkest, 0.5); 13export const colorWebviewLoaderBackground = hexToRgba(legacyStyles.darkThemeGrayDarkest, 0.5);
14
15// Modal
16export const colorModalOverlayBackground = hexToRgba(legacyStyles.darkThemeGrayDarkest, 0.8);
diff --git a/src/theme/default/index.js b/src/theme/default/index.js
index 37827621c..3ce8e7f0e 100644
--- a/src/theme/default/index.js
+++ b/src/theme/default/index.js
@@ -27,3 +27,6 @@ export const colorSubscriptionContainerActionButtonColor = '#FFF';
27export const colorAppLoaderSpinner = '#FFF'; 27export const colorAppLoaderSpinner = '#FFF';
28export const colorFullscreenLoaderSpinner = legacyStyles.themeGrayDark; 28export const colorFullscreenLoaderSpinner = legacyStyles.themeGrayDark;
29export const colorWebviewLoaderBackground = hexToRgba(legacyStyles.themeGrayLighter, 0.8); 29export const colorWebviewLoaderBackground = hexToRgba(legacyStyles.themeGrayLighter, 0.8);
30
31// Modal
32export const colorModalOverlayBackground = hexToRgba(legacyStyles.themeGrayLighter, 0.8);