aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-04-11 21:25:07 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-04-11 21:25:07 +0200
commit6a6f3fbc65077ac68d76382c4e76afc6cc6ed4b1 (patch)
tree6daabe7a4cafa12c65aab7260a11352e8e8375a8 /packages
parentfix lint issues (diff)
downloadferdium-app-6a6f3fbc65077ac68d76382c4e76afc6cc6ed4b1.tar.gz
ferdium-app-6a6f3fbc65077ac68d76382c4e76afc6cc6ed4b1.tar.zst
ferdium-app-6a6f3fbc65077ac68d76382c4e76afc6cc6ed4b1.zip
Finalize styling
Diffstat (limited to 'packages')
-rw-r--r--packages/theme/src/themes/dark/index.ts10
-rw-r--r--packages/theme/src/themes/default/index.ts8
2 files changed, 17 insertions, 1 deletions
diff --git a/packages/theme/src/themes/dark/index.ts b/packages/theme/src/themes/dark/index.ts
index b17dc8965..6796c7cbb 100644
--- a/packages/theme/src/themes/dark/index.ts
+++ b/packages/theme/src/themes/dark/index.ts
@@ -1,5 +1,5 @@
1import color from 'color'; 1import color from 'color';
2import { merge, cloneDeep } from 'lodash'; 2import { cloneDeep, merge } from 'lodash';
3 3
4import * as defaultStyles from '../default'; 4import * as defaultStyles from '../default';
5import * as legacyStyles from '../legacy'; 5import * as legacyStyles from '../legacy';
@@ -111,3 +111,11 @@ export const workspaces = merge({}, defaultStyles.workspaces, {
111 }, 111 },
112 }, 112 },
113}); 113});
114
115// Announcements
116
117export const announcements = merge({}, defaultStyles.workspaces, {
118 spotlight: {
119 background: legacyStyles.darkThemeGrayDark,
120 },
121});
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index 46d29f593..a85dcb366 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -1,6 +1,7 @@
1import color from 'color'; 1import color from 'color';
2import { cloneDeep } from 'lodash'; 2import { cloneDeep } from 'lodash';
3 3
4import { theme } from '../..';
4import * as legacyStyles from '../legacy'; 5import * as legacyStyles from '../legacy';
5 6
6export interface IStyleTypes { 7export interface IStyleTypes {
@@ -200,3 +201,10 @@ export const workspaces = {
200 spinnerColor: 'white', 201 spinnerColor: 'white',
201 }, 202 },
202}; 203};
204
205// Announcements
206export const announcements = {
207 spotlight: {
208 background: legacyStyles.themeGrayLightest,
209 },
210};