aboutsummaryrefslogtreecommitdiffstats
path: root/packages/theme/src/themes
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-04-07 19:50:40 +0200
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-04-07 19:50:40 +0200
commitb3afb9f45d47ebc352b28eb106b22fffc2f17707 (patch)
tree1cdcd243eba4e797c75747379f2ed8ad8a392cdc /packages/theme/src/themes
parentrefactor workspace table css away from legacy styles (diff)
downloadferdium-app-b3afb9f45d47ebc352b28eb106b22fffc2f17707.tar.gz
ferdium-app-b3afb9f45d47ebc352b28eb106b22fffc2f17707.tar.zst
ferdium-app-b3afb9f45d47ebc352b28eb106b22fffc2f17707.zip
render workspace service list like services + toggle
Diffstat (limited to 'packages/theme/src/themes')
-rw-r--r--packages/theme/src/themes/dark/index.ts52
-rw-r--r--packages/theme/src/themes/default/index.ts57
2 files changed, 106 insertions, 3 deletions
diff --git a/packages/theme/src/themes/dark/index.ts b/packages/theme/src/themes/dark/index.ts
index a9d1e1b46..73ffa7f5e 100644
--- a/packages/theme/src/themes/dark/index.ts
+++ b/packages/theme/src/themes/dark/index.ts
@@ -1,4 +1,5 @@
1import color from 'color'; 1import color from 'color';
2import { merge, cloneDeep } from 'lodash';
2 3
3import * as defaultStyles from '../default'; 4import * as defaultStyles from '../default';
4import * as legacyStyles from '../legacy'; 5import * as legacyStyles from '../legacy';
@@ -64,11 +65,51 @@ export const selectSearchColor = inputBackground;
64// Modal 65// Modal
65export const colorModalOverlayBackground = color(legacyStyles.darkThemeBlack).alpha(0.8).rgb().string(); 66export const colorModalOverlayBackground = color(legacyStyles.darkThemeBlack).alpha(0.8).rgb().string();
66 67
68// Services
69export const services = merge({}, defaultStyles.services, {
70 listItems: {
71 borderColor: legacyStyles.darkThemeGrayDarker,
72 hoverBgColor: legacyStyles.darkThemeGrayDarker,
73 disabled: {
74 color: legacyStyles.darkThemeGray,
75 },
76 },
77});
78
79// Workspaces
80const drawerBg = color(colorBackground).lighten(0.3).hex();
81
82export const workspaces = merge({}, defaultStyles.workspaces, {
83 settings: {
84 listItems: cloneDeep(services.listItems),
85 },
86 drawer: {
87 background: drawerBg,
88 addButton: {
89 color: legacyStyles.darkThemeGrayLighter,
90 hoverColor: legacyStyles.darkThemeGraySmoke,
91 },
92 listItem: {
93 border: color(drawerBg).lighten(0.2).hex(),
94 hoverBackground: color(drawerBg).lighten(0.2).hex(),
95 activeBackground: defaultStyles.brandPrimary,
96 name: {
97 color: colorText,
98 activeColor: 'white',
99 },
100 services: {
101 color: color(colorText).darken(0.5).hex(),
102 active: color(defaultStyles.brandPrimary).lighten(0.5).hex(),
103 },
104 },
105 },
106});
107
67// Workspace settings 108// Workspace settings
68export const workspaceSettings = { 109export const workspaceSettings = merge({}, defaultStyles.workspaceSettings, {
69 listItemBorderColor: legacyStyles.darkThemeGrayDarker, 110 listItemBorderColor: legacyStyles.darkThemeGrayDarker,
70 listItemHoverBgColor: legacyStyles.darkThemeGrayDarker, 111 listItemHoverBgColor: legacyStyles.darkThemeGrayDarker,
71}; 112});
72 113
73// Workspace Drawer 114// Workspace Drawer
74export const workspaceDrawerBackground = color(colorBackground).lighten(0.3).hex(); 115export const workspaceDrawerBackground = color(colorBackground).lighten(0.3).hex();
@@ -81,3 +122,10 @@ export const workspaceDrawerItemNameColor = colorText;
81export const workspaceDrawerItemNameActiveColor = 'white'; 122export const workspaceDrawerItemNameActiveColor = 'white';
82export const workspaceDrawerServicesColor = color(colorText).darken(0.5).hex(); 123export const workspaceDrawerServicesColor = color(colorText).darken(0.5).hex();
83export const workspaceDrawerServicesActiveColor = color(defaultStyles.brandPrimary).lighten(0.5).hex(); 124export const workspaceDrawerServicesActiveColor = color(defaultStyles.brandPrimary).lighten(0.5).hex();
125
126// Service Icon
127export const serviceIcon = merge({}, defaultStyles.serviceIcon, {
128 isCustom: {
129 border: `1px solid ${legacyStyles.darkThemeGrayDark}`,
130 },
131});
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index e4c74a5c9..d2b9014b4 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -1,4 +1,5 @@
1import color from 'color'; 1import color from 'color';
2import { cloneDeep } from 'lodash';
2 3
3import * as legacyStyles from '../legacy'; 4import * as legacyStyles from '../legacy';
4 5
@@ -143,8 +144,52 @@ export const badgeBorderRadius = 50;
143// Modal 144// Modal
144export const colorModalOverlayBackground = color('#000').alpha(0.5).rgb().string(); 145export const colorModalOverlayBackground = color('#000').alpha(0.5).rgb().string();
145 146
146// Workspace settings 147// Services
148export const services = {
149 listItems: {
150 padding: 10,
151 height: 57,
152 borderColor: legacyStyles.themeGrayLightest,
153 hoverBgColor: legacyStyles.themeGrayLightest,
154 disabled: {
155 color: legacyStyles.themeGrayLight,
156 },
157 },
158};
159
160// Workspaces
161const drawerBg = color(colorBackground).lighten(0.1).hex();
162
163export const workspaces = {
164 settings: {
165 listItems: cloneDeep(services.listItems),
166 },
167 drawer: {
168 width: 300,
169 padding: 20,
170 background: drawerBg,
171 addButton: {
172 color: legacyStyles.themeGrayLight,
173 hoverColor: color(legacyStyles.themeGrayLight).lighten(0.1).hex(),
174 },
175 listItem: {
176 hoverBackground: color(drawerBg).darken(0.01).hex(),
177 activeBackground: legacyStyles.themeGrayLightest,
178 border: color(drawerBg).darken(0.05).hex(),
179 name: {
180 color: colorText,
181 activeColor: colorText,
182 },
183 services: {
184 color: color(colorText).lighten(1.5).hex(),
185 active: color(colorText).lighten(1.5).hex(),
186 },
187 },
188 },
189};
190
147export const workspaceSettings = { 191export const workspaceSettings = {
192 listItemHeight: 57,
148 listItemBorderColor: legacyStyles.themeGrayLightest, 193 listItemBorderColor: legacyStyles.themeGrayLightest,
149 listItemHoverBgColor: legacyStyles.themeGrayLightest, 194 listItemHoverBgColor: legacyStyles.themeGrayLightest,
150}; 195};
@@ -162,3 +207,13 @@ export const workspaceDrawerItemNameColor = colorText;
162export const workspaceDrawerItemNameActiveColor = colorText; 207export const workspaceDrawerItemNameActiveColor = colorText;
163export const workspaceDrawerServicesColor = color(colorText).lighten(1.5).hex(); 208export const workspaceDrawerServicesColor = color(colorText).lighten(1.5).hex();
164export const workspaceDrawerServicesActiveColor = workspaceDrawerServicesColor; 209export const workspaceDrawerServicesActiveColor = workspaceDrawerServicesColor;
210
211// Service Icon
212export const serviceIcon = {
213 width: 35,
214 isCustom: {
215 border: `1px solid ${legacyStyles.themeGrayLighter}`,
216 borderRadius: legacyStyles.themeBorderRadius,
217 width: 37,
218 },
219};