]> Stephen's Gitweb - donsol-js.git/commitdiff
Add Apollo theme
authorStephen Jianu <stephen@stephenjianu.com>
Sun, 7 Jan 2024 17:12:05 +0000 (11:12 -0600)
committerStephen Jianu <stephen@stephenjianu.com>
Sun, 7 Jan 2024 17:12:05 +0000 (11:12 -0600)
sources/scripts/donsol.js
sources/scripts/player.js
sources/scripts/settings.js

index ec9f91af48bd8f7c21a4dd101f592f80e73e5df4..9f77fbc8e30ee42ffae650ff163d2457aeb192c9 100644 (file)
@@ -18,6 +18,17 @@ function Donsol () {
     b_low: '#333333',
     b_inv: '#a93232'
   }
+  this.apolloTheme= {
+    background: '#29272b',
+    f_high: '#ffffff',
+    f_med: '#e47464',
+    f_low: '#66606b',
+    f_inv: '#000000',
+    b_high: '#000000',
+    b_med: '#201e21',
+    b_low: '#322e33',
+    b_inv: '#e47464'
+  }
   this.gameboyTheme = {
     background: '#9BBC0F',
     f_high: '#0F380F',
index 73eb54e0c4861376055dae9276666a71c8f46160..f5f57375df4ed5cb49e7d97f50a5581de2c751d9 100644 (file)
@@ -152,6 +152,9 @@ function Player () {
     if (theme_value.localeCompare('theme') === 0) {
       new_theme = donsol.defaultTheme
     }
+    if (theme_value.localeCompare('apollo') === 0) {
+      new_theme = donsol.apolloTheme
+    }
     if (theme_value.localeCompare('gameboy') === 0) {
       new_theme = donsol.gameboyTheme
     }
index 1fa776f6478a193d1903fe2d32ac2e961d0795c1..47d7ce4db5e06012413ac28c6d547db3612ce58f 100644 (file)
@@ -11,6 +11,7 @@ function Settings () {
     this.theme_button = document.createElement('select')
     this.theme_button.setAttribute('class', 'theme button')
     this.theme_button.innerHTML = '<option value=\"theme\">Theme (default)</option>'
+    this.theme_button.innerHTML += '<option value=\"apollo\">Apollo</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>'