Skip to content

Commit 8f281e9

Browse files
Add 2 new themes
Add 2 new themes to theme definitions in script.js Themes are called "Crazy Colours" and "Itsumi 1-1"
1 parent a14280e commit 8f281e9

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

script.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ const themes = [
7777
"id": "light",
7878
"name": "Default",
7979
"text": "#333",
80+
"boxtext": "#333",
8081
"bg-main": "#f0f0f0",
8182
"bg-btn": "#fcfcfc",
8283
"bg-menu": "#eee",
@@ -90,6 +91,7 @@ const themes = [
9091
"id": "dark",
9192
"name": "Dark Mode",
9293
"text": "#f0f0f0",
94+
"boxtext": "#f0f0f0",
9395
"bg-main": "#232323",
9496
"bg-btn": "#323232",
9597
"bg-menu": "#454545",
@@ -103,6 +105,7 @@ const themes = [
103105
"id": "blue",
104106
"name": "True Blue",
105107
"text": "#f0f0f0",
108+
"boxtext": "#f0f0f0",
106109
"bg-main": "#055ae3",
107110
"bg-btn": "#4287f5",
108111
"bg-menu": "#356bc4",
@@ -116,6 +119,7 @@ const themes = [
116119
"id": "highcon",
117120
"name": "High Contrast",
118121
"text": "#ff5",
122+
"boxtext": "#ff5",
119123
"bg-main": "#000",
120124
"bg-btn": "#000",
121125
"bg-menu": "#000",
@@ -124,6 +128,34 @@ const themes = [
124128
"box-border": "2px solid #ff5",
125129
"btn-border-clr": "#fff",
126130
"btn-radius": "10px"
131+
},
132+
{
133+
"id": "rainbow",
134+
"name": "Crazy Colours",
135+
"text": "#ff0",
136+
"boxtext": "#ff0",
137+
"bg-main": "#11d",
138+
"bg-btn": "#15bb15",
139+
"bg-menu": "#a37",
140+
"textbox": "#f21",
141+
"menu-border": "3px solid #f0f",
142+
"box-border": "2px solid #0ff",
143+
"btn-border-clr": "#cc7522",
144+
"btn-radius": "10px"
145+
},
146+
{
147+
"id": "smbnes",
148+
"name": "Itsumi 1-1",
149+
"text": "#b92716",
150+
"boxtext": "#138400",
151+
"bg-main": "#6481f9",
152+
"bg-btn": "#f0ac3f",
153+
"bg-menu": "#f0ac3f",
154+
"textbox": "#f0ac3f",
155+
"menu-border": "3px solid #b92716",
156+
"box-border": "5px solid #b92716",
157+
"btn-border-clr": "#b92716",
158+
"btn-radius": "0px"
127159
}
128160
];
129161

0 commit comments

Comments
 (0)