diff --git a/src/index.html b/src/index.html
index 0d89136..59c5002 100644
--- a/src/index.html
+++ b/src/index.html
@@ -61,7 +61,7 @@
- 0 | 0
+ 0 | 0
diff --git a/src/theme.js b/src/theme.js
new file mode 100644
index 0000000..2f2cec8
--- /dev/null
+++ b/src/theme.js
@@ -0,0 +1,20 @@
+class theme
+{
+ constructor(back, object, highlight, text)
+ {
+ this.back = back;
+ this.object = object;
+ this.highlight = highlight;
+ this.text = text;
+ }
+}
+
+function setTheme(name)
+{
+
+}
+
+const themes =
+{
+ 'orange': theme('#231F20', '#ec5020', '#fa6d42', '#ffffff')
+}
\ No newline at end of file
|