aboutsummaryrefslogtreecommitdiffstats
path: root/src/theme/dark/index.js
blob: 8fdb321f3ebd31a2e2af61f6f508d7df35775030 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import hexToRgba from 'hex-to-rgba';

import * as legacyStyles from '../default/legacy';

export const colorBackground = legacyStyles.darkThemeGrayDarkest;
export const colorBackgroundSubscriptionContainer = legacyStyles.themeBrandInfo;

export const colorHeadline = legacyStyles.darkThemeTextColor;
export const colorText = legacyStyles.darkThemeTextColor;

// Error Handler
export const colorWebviewErrorHandlerBackground = legacyStyles.darkThemeGrayDarkest;

// Loader
export const colorFullscreenLoaderSpinner = '#FFF';
export const colorWebviewLoaderBackground = hexToRgba(legacyStyles.darkThemeGrayDarkest, 0.5);

// Modal
export const colorModalOverlayBackground = hexToRgba(legacyStyles.darkThemeGrayDarkest, 0.8);