From e8b006ca13bc06463ba7b1972f15ad258c9f623d Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife Date: Tue, 13 Apr 2021 22:18:47 +0100 Subject: [PATCH] themes --- src/index.html | 2 +- src/theme.js | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 src/theme.js 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