diff --git a/src/app.js b/src/app.js index cbcb7a4..e82c14b 100644 --- a/src/app.js +++ b/src/app.js @@ -3,12 +3,15 @@ import React from "react" import { Header, Projects } from "./components" import { Body, Section } from "./elements" import NoscriptWarning from "./noscript" +import { ThemeProvider } from "styled-components" +import { Dark } from "./themes" - -export default () => - -
-
- -
- +export default () => + + +
+
+ +
+ + diff --git a/src/runtime.js b/src/runtime.js index 04fee87..ad88f0c 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -6,15 +6,12 @@ import React from "react" import ReactDOM from "react-dom" import App from "./app" import { ThemeProvider } from "styled-components" -import { Dark } from "./themes" import { BrowserRouter, Route } from "react-router-dom" -const routes = - - - - +const routes = + + const target = document.getElementById("content") if(target instanceof Element) { diff --git a/src/themes/dark.js b/src/themes/dark.js index 1222c21..91e1144 100644 --- a/src/themes/dark.js +++ b/src/themes/dark.js @@ -3,6 +3,6 @@ export default { backgroundcolor: "#111111", fontFamily: "monospace", - textcolor: "#FFFFFF", + textColor: "#FFFFFF", projectVisitedColor: "#BBBBBB" }