aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLibravatar Balaji Vijayakumar <kuttibalaji.v6@gmail.com>2022-12-08 22:28:46 +0530
committerLibravatar GitHub <noreply@github.com>2022-12-08 16:58:46 +0000
commit93d61ced55e7e1c486cdbe6c02c16435ca698860 (patch)
treee4d9e53260e508711cfcf45232d086e906a09d8e /scripts
parentBackported deprecation fixes from electron v22 upgrade (diff)
downloadferdium-app-93d61ced55e7e1c486cdbe6c02c16435ca698860.tar.gz
ferdium-app-93d61ced55e7e1c486cdbe6c02c16435ca698860.tar.zst
ferdium-app-93d61ced55e7e1c486cdbe6c02c16435ca698860.zip
migrate from gulp to esbuild for faster builds (#815)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/theme/default/legacy.ts46
1 files changed, 0 insertions, 46 deletions
diff --git a/scripts/theme/default/legacy.ts b/scripts/theme/default/legacy.ts
deleted file mode 100644
index e7e15f7cf..000000000
--- a/scripts/theme/default/legacy.ts
+++ /dev/null
@@ -1,46 +0,0 @@
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;