aboutsummaryrefslogtreecommitdiffstats
path: root/src/theme/dark/index.js
blob: fb17131842ea3e915ed8ee9cda14c9c1690259a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;

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