aboutsummaryrefslogtreecommitdiffstats
path: root/src/themes/legacy/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/themes/legacy/index.ts')
-rw-r--r--src/themes/legacy/index.ts40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/themes/legacy/index.ts b/src/themes/legacy/index.ts
new file mode 100644
index 000000000..c6105a4e2
--- /dev/null
+++ b/src/themes/legacy/index.ts
@@ -0,0 +1,40 @@
1import { DEFAULT_ACCENT_COLOR } from '../../config';
2
3/* legacy config, injected into sass */
4export const themeBrandPrimary = DEFAULT_ACCENT_COLOR;
5export const themeBrandSuccess = '#5cb85c';
6export const themeBrandInfo = '#5bc0de';
7export const themeBrandWarning = '#FF9F00';
8export const themeBrandDanger = '#d9534f';
9
10export const themeGrayDark = '#373a3c';
11export const themeGray = '#55595c';
12export const themeGrayLight = '#818a91';
13export const themeGrayLighter = '#eceeef';
14export const themeGrayLightest = '#f7f7f9';
15
16export const themeBorderRadius = '6px';
17export const themeBorderRadiusSmall = '3px';
18
19export const themeSidebarWidth = '68px';
20
21export const themeTextColor = themeGrayDark;
22
23export const themeTransitionTime = '.5s';
24
25export const themeInsetShadow = 'inset 0 2px 5px rgba(0, 0, 0, .03)';
26
27export const darkThemeBlack = '#1A1A1A';
28
29export const darkThemeGrayDarkest = '#1E1E1E';
30export const darkThemeGrayDarker = '#2D2F31';
31export const darkThemeGrayDark = '#383A3B';
32
33export const darkThemeGray = '#47494B';
34
35export const darkThemeGrayLight = '#515355';
36export const darkThemeGrayLighter = '#8a8b8b';
37export const darkThemeGrayLightest = '#FFFFFF';
38
39export const darkThemeGraySmoke = '#CED0D1';
40export const darkThemeTextColor = '#FFFFFF';