aboutsummaryrefslogtreecommitdiffstats
path: root/src/themes
diff options
context:
space:
mode:
Diffstat (limited to 'src/themes')
-rw-r--r--src/themes/default/index.ts2
-rw-r--r--src/themes/legacy/index.ts11
2 files changed, 1 insertions, 12 deletions
diff --git a/src/themes/default/index.ts b/src/themes/default/index.ts
index 2e18e1307..31c6cbd63 100644
--- a/src/themes/default/index.ts
+++ b/src/themes/default/index.ts
@@ -15,7 +15,7 @@ export default (brandPrimary: string) => {
15 const uiFontSize = 14; 15 const uiFontSize = 14;
16 const colorBackground = legacyStyles.themeGrayLighter; 16 const colorBackground = legacyStyles.themeGrayLighter;
17 const colorContentBackground = '#FFFFFF'; 17 const colorContentBackground = '#FFFFFF';
18 const colorText = legacyStyles.themeTextColor; 18 const colorText = legacyStyles.themeGrayDark;
19 const inputColor = legacyStyles.themeGray; 19 const inputColor = legacyStyles.themeGray;
20 const inputBackground = legacyStyles.themeGrayLightest; 20 const inputBackground = legacyStyles.themeGrayLightest;
21 const inputHeight = 40; 21 const inputHeight = 40;
diff --git a/src/themes/legacy/index.ts b/src/themes/legacy/index.ts
index ca3216e7f..9caefc698 100644
--- a/src/themes/legacy/index.ts
+++ b/src/themes/legacy/index.ts
@@ -1,10 +1,7 @@
1/* legacy config, injected into sass */ 1/* legacy config, injected into sass */
2export { DEFAULT_ACCENT_COLOR as themeBrandPrimary } from '../../config'; 2export { DEFAULT_ACCENT_COLOR as themeBrandPrimary } from '../../config';
3 3
4export const themeBrandSuccess = '#5cb85c';
5export const themeBrandInfo = '#5bc0de'; 4export const themeBrandInfo = '#5bc0de';
6export const themeBrandWarning = '#FF9F00';
7export const themeBrandDanger = '#d9534f';
8 5
9export const themeGrayDark = '#373a3c'; 6export const themeGrayDark = '#373a3c';
10export const themeGray = '#55595c'; 7export const themeGray = '#55595c';
@@ -15,14 +12,6 @@ export const themeGrayLightest = '#f7f7f9';
15export const themeBorderRadius = '6px'; 12export const themeBorderRadius = '6px';
16export const themeBorderRadiusSmall = '3px'; 13export const themeBorderRadiusSmall = '3px';
17 14
18export const themeSidebarWidth = '68px';
19
20export const themeTextColor = themeGrayDark;
21
22export const themeTransitionTime = '.5s';
23
24export const themeInsetShadow = 'inset 0 2px 5px rgba(0, 0, 0, .03)';
25
26export const darkThemeBlack = '#1A1A1A'; 15export const darkThemeBlack = '#1A1A1A';
27 16
28export const darkThemeGrayDarkest = '#1E1E1E'; 17export const darkThemeGrayDarkest = '#1E1E1E';