@@ -12,7 +12,7 @@ Current version indicated by LITEVER below.
1212-->
1313
1414<script id="init-config">
15- const LITEVER = 283 ;
15+ const LITEVER = 284 ;
1616 const urlParams = new URLSearchParams(window.location.search);
1717 var localflag = urlParams.get('local'); //this will be replaced automatically in embedded kcpp
1818 const STORAGE_PREFIX = (localflag?"e_":"")+"kaihordewebui_";
@@ -207,6 +207,31 @@ Current version indicated by LITEVER below.
207207 --theme_color_topmenu: #ff69b4b3;
208208 }
209209
210+ .theme-5
211+ {
212+ --theme_color_bg_dark: #244752ad;
213+ --theme_color_bg: #244752;
214+ --theme_color_bg_outer: #647476;
215+ --theme_color_main: #002b36;
216+ --theme_color_footer: #002b36;
217+ --theme_color_text: #a0bebe;
218+ --theme_color_input_text: #a0bebe;
219+ --theme_color_highlight: #7e9ea8;
220+ --theme_color_border: #7c8e8e;
221+ --theme_color_border_highlight: #82a1bc;
222+ --theme_color_input_bg: #244752;
223+ --theme_color_disabled_bg: #484d56;
224+ --theme_color_disabled_fg: #616773;
225+ --theme_color_topbtn: #244752;
226+ --theme_color_topbtn_highlight: #244752;
227+ --theme_color_tabs: #002b36;
228+ --theme_color_tabs_highlight: #4b7b8a;
229+ --theme_color_tabs_text: #a0bebe;
230+ --theme_color_glow_text: #a0bebe;
231+ --theme_color_placeholder_text: #c5d5d5;
232+ --theme_color_topmenu: #002b36;
233+ }
234+
210235 body.connected.corpoui .topmenu {
211236 --theme_color_topmenu: #337ab7;
212237 }
@@ -13687,6 +13712,7 @@ Current version indicated by LITEVER below.
1368713712 document.body.classList.remove("theme-2");
1368813713 document.body.classList.remove("theme-3");
1368913714 document.body.classList.remove("theme-4");
13715+ document.body.classList.remove("theme-5");
1369013716 if(localsettings.colortheme==1)
1369113717 {
1369213718 document.body.classList.add("theme-1");
@@ -13703,6 +13729,10 @@ Current version indicated by LITEVER below.
1370313729 {
1370413730 document.body.classList.add("theme-4");
1370513731 }
13732+ else if(localsettings.colortheme==5)
13733+ {
13734+ document.body.classList.add("theme-5");
13735+ }
1370613736 }
1370713737
1370813738 function update_genimg_button_visiblility()
@@ -26508,6 +26538,7 @@ Current version indicated by LITEVER below.
2650826538 <option value="2">Tako</option>
2650926539 <option value="3">Shadow</option>
2651026540 <option value="4">Candy</option>
26541+ <option value="5">Aqua</option>
2651126542 </select>
2651226543 </div>
2651326544 </div>
0 commit comments