feat: implement dark mode

This commit is contained in:
Jean-Philippe Sirois
2019-09-14 15:47:10 -04:00
parent a9e74c108f
commit 5f76447e05
18 changed files with 266 additions and 98 deletions
+7
View File
@@ -1,6 +1,13 @@
import { ITheme } from "./src/design/themes"
import "styled-components"
declare module "*.svg"
declare module "*.png"
type ComponentQuery<T> = {
readonly data: T
}
declare module "styled-components" {
export interface DefaultTheme extends ITheme {}
}