aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/theme
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-21 09:03:32 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-08-21 09:16:59 +0530
commit16d8de38b74c298fda27c22c804850a999183d57 (patch)
tree6c869677e3bb8472f5b86c92908bb256ec0c5be5 /scripts/theme
parentchore: typescript conversion (diff)
downloadferdium-app-16d8de38b74c298fda27c22c804850a999183d57.tar.gz
ferdium-app-16d8de38b74c298fda27c22c804850a999183d57.tar.zst
ferdium-app-16d8de38b74c298fda27c22c804850a999183d57.zip
chore: move build-time js files out of 'src' and into 'scripts'
so that they not packaged into final deployable artefact
Diffstat (limited to 'scripts/theme')
-rw-r--r--scripts/theme/default/legacy.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/scripts/theme/default/legacy.js b/scripts/theme/default/legacy.js
new file mode 100644
index 000000000..015dca756
--- /dev/null
+++ b/scripts/theme/default/legacy.js
@@ -0,0 +1,38 @@
1/* legacy config, injected into sass at build time */
2export const themeBrandPrimary = '#7266F0';
3export const themeBrandSuccess = '#5cb85c';
4export const themeBrandInfo = '#5bc0de';
5export const themeBrandWarning = '#FF9F00';
6export const themeBrandDanger = '#d9534f';
7
8export const themeGrayDark = '#373a3c';
9export const themeGray = '#55595c';
10export const themeGrayLight = '#818a91';
11export const themeGrayLighter = '#eceeef';
12export const themeGrayLightest = '#f7f7f9';
13
14export const themeBorderRadius = '6px';
15export const themeBorderRadiusSmall = '3px';
16
17export const themeSidebarWidth = '68px';
18
19export const themeTextColor = themeGrayDark;
20
21export const themeTransitionTime = '.5s';
22
23export const themeInsetShadow = 'inset 0 2px 5px rgba(0, 0, 0, .03)';
24
25export const darkThemeBlack = '#1A1A1A';
26
27export const darkThemeGrayDarkest = '#1E1E1E';
28export const darkThemeGrayDarker = '#2D2F31';
29export const darkThemeGrayDark = '#383A3B';
30
31export const darkThemeGray = '#47494B';
32
33export const darkThemeGrayLight = '#515355';
34export const darkThemeGrayLighter = '#8a8b8b';
35export const darkThemeGrayLightest = '#FFFFFF';
36
37export const darkThemeGraySmoke = '#CED0D1';
38export const darkThemeTextColor = '#FFFFFF';