aboutsummaryrefslogtreecommitdiffstats
path: root/packages/theme/src/themes
diff options
context:
space:
mode:
Diffstat (limited to 'packages/theme/src/themes')
-rw-r--r--packages/theme/src/themes/IStyleTypes.ts2
-rw-r--r--packages/theme/src/themes/dark/index.ts7
-rw-r--r--packages/theme/src/themes/default/index.ts9
3 files changed, 2 insertions, 16 deletions
diff --git a/packages/theme/src/themes/IStyleTypes.ts b/packages/theme/src/themes/IStyleTypes.ts
index cf8bdea33..48f52daf2 100644
--- a/packages/theme/src/themes/IStyleTypes.ts
+++ b/packages/theme/src/themes/IStyleTypes.ts
@@ -1,4 +1,4 @@
1export default interface IStyleTypes { 1export interface IStyleTypes {
2 [index: string]: { 2 [index: string]: {
3 accent: string; 3 accent: string;
4 contrast: string; 4 contrast: string;
diff --git a/packages/theme/src/themes/dark/index.ts b/packages/theme/src/themes/dark/index.ts
index 7d7bab399..87a68cb5d 100644
--- a/packages/theme/src/themes/dark/index.ts
+++ b/packages/theme/src/themes/dark/index.ts
@@ -153,13 +153,6 @@ export default (brandPrimary: string) => {
153 }, 153 },
154 }), 154 }),
155 155
156 // Announcements
157 announcements: merge({}, defaultStyles.announcements, {
158 spotlight: {
159 background: legacyStyles.darkThemeGrayDark,
160 },
161 }),
162
163 // Todos 156 // Todos
164 todos: merge({}, defaultStyles.todos, { 157 todos: merge({}, defaultStyles.todos, {
165 todosLayer: { 158 todosLayer: {
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index 21017bbe0..80bcba766 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -2,7 +2,7 @@ import color from 'color';
2import { cloneDeep } from 'lodash'; 2import { cloneDeep } from 'lodash';
3 3
4import * as legacyStyles from '../legacy'; 4import * as legacyStyles from '../legacy';
5import IStyleTypes from '../IStyleTypes'; 5import type { IStyleTypes } from '../IStyleTypes';
6 6
7export default (brandPrimary: string) => { 7export default (brandPrimary: string) => {
8 const brandSuccess = '#5cb85c'; 8 const brandSuccess = '#5cb85c';
@@ -228,13 +228,6 @@ export default (brandPrimary: string) => {
228 }, 228 },
229 }, 229 },
230 230
231 // Announcements
232 announcements: {
233 spotlight: {
234 background: legacyStyles.themeGrayLightest,
235 },
236 },
237
238 // Todos 231 // Todos
239 todos: { 232 todos: {
240 todosLayer: { 233 todosLayer: {