summaryrefslogtreecommitdiffstats
path: root/packages/theme/src/themes/default/index.ts
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/theme/src/themes/default/index.ts
parentfix lint issues (diff)
downloadferdium-app-6a6f3fbc65077ac68d76382c4e76afc6cc6ed4b1.tar.gz
ferdium-app-6a6f3fbc65077ac68d76382c4e76afc6cc6ed4b1.tar.zst
ferdium-app-6a6f3fbc65077ac68d76382c4e76afc6cc6ed4b1.zip
Finalize styling
Diffstat (limited to 'packages/theme/src/themes/default/index.ts')
-rw-r--r--packages/theme/src/themes/default/index.ts8
1 files changed, 8 insertions, 0 deletions
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};