aboutsummaryrefslogtreecommitdiffstats
path: root/packages/theme/src/themes/legacy
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-01-03 16:46:40 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-01-03 16:46:40 +0100
commitad585791493b09609be885e0304d987a0382db9a (patch)
treeb36509117e1e60f827a56a2caec12e566e015274 /packages/theme/src/themes/legacy
parentAdd lerna (diff)
downloadferdium-app-ad585791493b09609be885e0304d987a0382db9a.tar.gz
ferdium-app-ad585791493b09609be885e0304d987a0382db9a.tar.zst
ferdium-app-ad585791493b09609be885e0304d987a0382db9a.zip
Add theme
Diffstat (limited to 'packages/theme/src/themes/legacy')
-rw-r--r--packages/theme/src/themes/legacy/index.ts38
1 files changed, 38 insertions, 0 deletions
diff --git a/packages/theme/src/themes/legacy/index.ts b/packages/theme/src/themes/legacy/index.ts
new file mode 100644
index 000000000..2114b92c1
--- /dev/null
+++ b/packages/theme/src/themes/legacy/index.ts
@@ -0,0 +1,38 @@
1/* legacy config, injected into sass */
2export const themeBrandPrimary = '#3498db';
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';