Add Haxe theme
This commit is contained in:
parent
9a4a463d1f
commit
8ef8359c30
3 changed files with 15 additions and 0 deletions
|
|
@ -161,6 +161,17 @@ function Donsol () {
|
||||||
b_low: '#10151B',
|
b_low: '#10151B',
|
||||||
b_inv: '#8FAF9F'
|
b_inv: '#8FAF9F'
|
||||||
}
|
}
|
||||||
|
this.haxeTheme = {
|
||||||
|
background: '#141419',
|
||||||
|
f_high: '#FAB20B',
|
||||||
|
f_med: '#F47216',
|
||||||
|
f_low: '#F1471D',
|
||||||
|
f_inv: '#141419',
|
||||||
|
b_high: '#141419',
|
||||||
|
b_med: '#141419',
|
||||||
|
b_low: '#141419',
|
||||||
|
b_inv: '#FFFFFF'
|
||||||
|
}
|
||||||
this.nightowlTheme = {
|
this.nightowlTheme = {
|
||||||
background: '#011627',
|
background: '#011627',
|
||||||
f_high: '#7fdbca',
|
f_high: '#7fdbca',
|
||||||
|
|
|
||||||
|
|
@ -191,6 +191,9 @@ function Player () {
|
||||||
if (theme_value.localeCompare('gotham') === 0) {
|
if (theme_value.localeCompare('gotham') === 0) {
|
||||||
new_theme = donsol.gothamTheme
|
new_theme = donsol.gothamTheme
|
||||||
}
|
}
|
||||||
|
if (theme_value.localeCompare('haxe') === 0) {
|
||||||
|
new_theme = donsol.haxeTheme
|
||||||
|
}
|
||||||
if (theme_value.localeCompare('nightowl') === 0) {
|
if (theme_value.localeCompare('nightowl') === 0) {
|
||||||
new_theme = donsol.nightowlTheme
|
new_theme = donsol.nightowlTheme
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ function Settings () {
|
||||||
this.theme_button.innerHTML += '<option value=\"gameboy\">Game Boy</option>'
|
this.theme_button.innerHTML += '<option value=\"gameboy\">Game Boy</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"garden\">Garden</option>'
|
this.theme_button.innerHTML += '<option value=\"garden\">Garden</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"gotham\">Gotham</option>'
|
this.theme_button.innerHTML += '<option value=\"gotham\">Gotham</option>'
|
||||||
|
this.theme_button.innerHTML += '<option value=\"haxe\">Haxe</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"nightowl\">Night Owl</option>'
|
this.theme_button.innerHTML += '<option value=\"nightowl\">Night Owl</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'
|
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"tape\">Tape</option>'
|
this.theme_button.innerHTML += '<option value=\"tape\">Tape</option>'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue