@@ -52,7 +52,7 @@ private void initConfig() {
52
52
config .checkEntry ("settings.language" ,"auto" );
53
53
config .checkEntry ("settings.memory.default" , 1024 );
54
54
config .checkEntry ("settings.logger.debug" , false );
55
- config .checkEntry ("settings.appearance.theme" ,"zyneon " );
55
+ config .checkEntry ("settings.appearance.theme" ,"dark " );
56
56
57
57
theme = config .getString ("settings.appearance.theme" );
58
58
memory = config .getInteger ("settings.memory.default" );
@@ -80,7 +80,7 @@ public void start() {
80
80
Main .getLogger ().log ("[APP] Setting up frame and webview..." );
81
81
checkURL ();
82
82
Main .getLogger ().log ("[APP] Styling webview frame..." );
83
- frame .setTitlebar ("Zyneon Application" , Color .decode ( "#050113" ) , Color .white );
83
+ frame .setTitlebar ("Zyneon Application" , Color .black , Color .white );
84
84
frame .setVisible (true );
85
85
frame .addWindowListener (new WindowAdapter () {
86
86
@ Override
@@ -198,15 +198,15 @@ public static String getStartURL() {
198
198
}
199
199
200
200
public static String getNewsURL () {
201
- return "file://" + Main .getDirectoryPath () + "libs/zyneon/" + Main .version + "/" + "start.html?theme=" + theme ;
201
+ return "file://" + Main .getDirectoryPath () + "libs/zyneon/" + Main .version + "/" + "start.html" ;
202
202
}
203
203
204
204
public static String getInstancesURL () {
205
- return "file://" + Main .getDirectoryPath () + "libs/zyneon/" + Main .version + "/" + "instances.html?theme=" + theme ;
205
+ return "file://" + Main .getDirectoryPath () + "libs/zyneon/" + Main .version + "/" + "instances.html" ;
206
206
}
207
207
208
208
public static String getSettingsURL () {
209
- return "file://" + Main .getDirectoryPath () + "libs/zyneon/" + Main .version + "/" + "settings.html?theme=" + theme ;
209
+ return "file://" + Main .getDirectoryPath () + "libs/zyneon/" + Main .version + "/" + "settings.html" ;
210
210
}
211
211
212
212
private void checkURL () throws IOException , UnsupportedPlatformException , CefInitializationException , InterruptedException {
0 commit comments