aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/constants/globalStyle.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/constants/globalStyle.tsx')
-rw-r--r--packages/website/ts/@next/constants/globalStyle.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/website/ts/@next/constants/globalStyle.tsx b/packages/website/ts/@next/constants/globalStyle.tsx
index 7e8f2ebdb..fd9e67cb4 100644
--- a/packages/website/ts/@next/constants/globalStyle.tsx
+++ b/packages/website/ts/@next/constants/globalStyle.tsx
@@ -1,13 +1,11 @@
-import { withTheme, createGlobalStyle } from 'styled-components';
+import { createGlobalStyle, withTheme } from 'styled-components';
import {cssReset} from 'ts/@next/constants/cssReset';
-import {colors} from 'ts/style/colors';
-
interface GlobalStyle {
theme: {
bgColor: string;
textColor: string;
- }
+ };
}
const GlobalStyles = withTheme(createGlobalStyle<GlobalStyle> `