diff --git a/src/config.cc b/src/config.cc
index f67cdbe..61ad2c6 100644
--- a/src/config.cc
+++ b/src/config.cc
@@ -45,6 +45,10 @@ void MainConfig::find_or_create_config_files() {
juci_style_path+="juci-dark.xml";
if(!boost::filesystem::exists(juci_style_path))
juci::filesystem::write(juci_style_path, juci_dark_style);
+ juci_style_path=Singleton::style_dir();
+ juci_style_path+="juci-dark-blue.xml";
+ if(!boost::filesystem::exists(juci_style_path))
+ juci::filesystem::write(juci_style_path, juci_dark_blue_style);
}
void MainConfig::retrieve_config() {
diff --git a/src/files.h b/src/files.h
index 0c03913..0c9da9b 100644
--- a/src/files.h
+++ b/src/files.h
@@ -151,7 +151,7 @@ const std::string juci_dark_style =
"\n"
"\n"
" juCi++ team\n"
-" <_description>Default juCi++ style\n"
+" <_description>Dark juCi++ style\n"
"\n"
" \n"
" \n"
@@ -201,6 +201,64 @@ const std::string juci_dark_style =
"\n"
"\n";
+const std::string juci_dark_blue_style =
+"\n"
+"\n"
+"\n"
+" juCi++ team\n"
+" <_description>Dark blue juCi++ style based on the Emacs deeper blue theme\n"
+"\n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+" \n"
+"\n"
+" \n";
+
const std::string pluginspy =
"#!/usr/bin/python \n"
"import juci_to_python_api as juci \n"