aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/style/theme.ts
diff options
context:
space:
mode:
authorRemco Bloemen <remco@wicked.ventures>2018-11-09 06:49:10 +0800
committerRemco Bloemen <remco@wicked.ventures>2018-11-09 06:49:10 +0800
commitfd73c17db1346ce264700315f964d946216061a9 (patch)
treeea921806732a8a4b06bb3696581063bcd0481469 /packages/instant/src/style/theme.ts
parentd71362af993d3797dbdbfcac245ad57f0086bce3 (diff)
parent689f8f1fbc34b6fa976f95419804f9eee7e637f6 (diff)
downloaddexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar
dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.gz
dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.bz2
dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.lz
dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.xz
dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.zst
dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.zip
Merge remote-tracking branch 'origin/development' into feature/utils/prettybignum
Diffstat (limited to 'packages/instant/src/style/theme.ts')
-rw-r--r--packages/instant/src/style/theme.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/style/theme.ts b/packages/instant/src/style/theme.ts
index d10c9b72c..8dada2d28 100644
--- a/packages/instant/src/style/theme.ts
+++ b/packages/instant/src/style/theme.ts
@@ -1,6 +1,6 @@
import * as styledComponents from 'styled-components';
-const { default: styled, css, keyframes, withTheme, ThemeProvider } = styledComponents;
+const { default: styled, css, keyframes, withTheme, createGlobalStyle, ThemeProvider } = styledComponents;
export type Theme = { [key in ColorOption]: string };
@@ -33,4 +33,4 @@ export const theme: Theme = {
export const transparentWhite = 'rgba(255,255,255,0.3)';
export const overlayBlack = 'rgba(0, 0, 0, 0.6)';
-export { styled, css, keyframes, withTheme, ThemeProvider };
+export { styled, css, keyframes, withTheme, createGlobalStyle, ThemeProvider };