aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/theme/ThemeProvider.js
diff options
context:
space:
mode:
authorjackyzha0 <[email protected]>2021-03-05 22:17:18 -0800
committerjackyzha0 <[email protected]>2021-03-05 22:17:18 -0800
commit3e8500d466b641ef34c24f8b0de8163a44ba7a9e (patch)
treeebb3411d636912b12f9fee14ecd494601cd796fc /frontend/src/theme/ThemeProvider.js
parentremove extra langs (diff)
downloadctrl-v-3e8500d466b641ef34c24f8b0de8163a44ba7a9e.tar.xz
ctrl-v-3e8500d466b641ef34c24f8b0de8163a44ba7a9e.zip
refactoring css
Diffstat (limited to 'frontend/src/theme/ThemeProvider.js')
-rw-r--r--frontend/src/theme/ThemeProvider.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/theme/ThemeProvider.js b/frontend/src/theme/ThemeProvider.js
new file mode 100644
index 0000000..a104a5a
--- /dev/null
+++ b/frontend/src/theme/ThemeProvider.js
@@ -0,0 +1,12 @@
+import React from 'react'
+import { ThemeProvider } from 'styled-components'
+
+const theme = {
+ colors: {
+ background: '#faf9f5',
+ border: '#565656',
+ text: '#111111',
+ },
+}
+
+export default ({ children }) => <ThemeProvider theme={theme}>{children}</ThemeProvider> \ No newline at end of file