Add Frame.io theme

This commit is contained in:
Stephen Jianu 2024-01-17 19:33:28 -06:00
commit 7771daf708
3 changed files with 15 additions and 0 deletions

View file

@ -117,6 +117,17 @@ function Donsol () {
b_low: '#9acd32',
b_inv: '#000000'
}
this.frameioTheme = {
background: '#333848',
f_high: '#cccccc',
f_med: '#5b52fe',
f_low: '#4c576f',
f_inv: '#ffffff',
b_high: '#edeef2',
b_med: '#262b37',
b_low: '#394153',
b_inv: '#5b52fe'
}
this.gameboyTheme = {
background: '#9BBC0F',
f_high: '#0F380F',

View file

@ -179,6 +179,9 @@ function Player () {
if (theme_value.localeCompare('forestlawn') === 0) {
new_theme = donsol.forestlawnTheme
}
if (theme_value.localeCompare('frameio') === 0) {
new_theme = donsol.frameioTheme
}
if (theme_value.localeCompare('gameboy') === 0) {
new_theme = donsol.gameboyTheme
}

View file

@ -20,6 +20,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"cobalt\">Cobalt</option>'
this.theme_button.innerHTML += '<option value=\"commodore\">Commodore</option>'
this.theme_button.innerHTML += '<option value=\"forestlawn\">Forest Lawn</option>'
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=\"nightowl\">Night Owl</option>'
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'