From 9e7be86de0d3fcb8afe6f75b77fabbaf2db39f5a Mon Sep 17 00:00:00 2001 From: skaman82 Date: Fri, 24 Nov 2017 13:49:42 +0100 Subject: [PATCH] Fix toggle color --- js/gui.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/gui.js b/js/gui.js index b0c8932c..cd6a8327 100644 --- a/js/gui.js +++ b/js/gui.js @@ -91,7 +91,7 @@ GUI_control.prototype.switchery = function() { $('.togglesmall').each(function(index, elem) { var switchery = new Switchery(elem, { size: 'small', - color: '#ffbb00', + color: '#37a8db', secondaryColor: '#c4c4c4' }); $(elem).on("change", function (evt) { @@ -102,7 +102,7 @@ GUI_control.prototype.switchery = function() { $('.toggle').each(function(index, elem) { var switchery = new Switchery(elem, { - color: '#ffbb00', + color: '#37a8db', secondaryColor: '#c4c4c4' }); $(elem).on("change", function (evt) { @@ -114,7 +114,7 @@ GUI_control.prototype.switchery = function() { $('.togglemedium').each(function(index, elem) { var switchery = new Switchery(elem, { className: 'switcherymid', - color: '#ffbb00', + color: '#37a8db', secondaryColor: '#c4c4c4' }); $(elem).on("change", function (evt) {