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