Add Gotham theme

This commit is contained in:
Stephen Jianu 2024-10-10 11:20:23 -05:00
commit 9a4a463d1f
3 changed files with 15 additions and 0 deletions

View file

@ -150,6 +150,17 @@ function Donsol () {
b_low: '#48413a',
b_inv: '#4cb1cf'
}
this.gothamTheme = {
background: '#0A0F14',
f_high: '#FFFFFF',
f_med: '#98D1CE',
f_low: '#EDB54B',
f_inv: '#C33027',
b_high: '#093748',
b_med: '#081F2D',
b_low: '#10151B',
b_inv: '#8FAF9F'
}
this.nightowlTheme = {
background: '#011627',
f_high: '#7fdbca',

View file

@ -188,6 +188,9 @@ function Player () {
if (theme_value.localeCompare('garden') === 0) {
new_theme = donsol.gardenTheme
}
if (theme_value.localeCompare('gotham') === 0) {
new_theme = donsol.gothamTheme
}
if (theme_value.localeCompare('nightowl') === 0) {
new_theme = donsol.nightowlTheme
}

View file

@ -23,6 +23,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"frameio\">Frame.io</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=\"gotham\">Gotham</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=\"tape\">Tape</option>'