aboutsummaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-08-14 22:58:03 -0700
committerAlex Yatskov <alex@foosoft.net>2017-08-14 22:58:03 -0700
commitc9623276e1dfdf6014d2bf791180e88e8df500dd (patch)
tree2028cb67560639be92fc6a590c31b3ba37cd12f8 /ext
parentb1ec7cdddd6caab87f0f0cbc9d597d00fe5d5b55 (diff)
change color for "off" state, fixes #67
Diffstat (limited to 'ext')
-rw-r--r--ext/bg/js/backend.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js
index 97e5602a..6c77ba7e 100644
--- a/ext/bg/js/backend.js
+++ b/ext/bg/js/backend.js
@@ -40,7 +40,7 @@ class Backend {
this.options = options;
if (!options.general.enable) {
- chrome.browserAction.setBadgeBackgroundColor({color: '#d9534f'});
+ chrome.browserAction.setBadgeBackgroundColor({color: '#555555'});
chrome.browserAction.setBadgeText({text: 'off'});
} else if (!dictConfigured(options)) {
chrome.browserAction.setBadgeBackgroundColor({color: '#f0ad4e'});