diff --git a/src/icons/iconBlack.png b/src/icons/iconBlack.png index 597cc2775..5abe6d2a5 100644 Binary files a/src/icons/iconBlack.png and b/src/icons/iconBlack.png differ diff --git a/src/icons/iconBlackSmall.png b/src/icons/iconBlackSmall.png new file mode 100644 index 000000000..597cc2775 Binary files /dev/null and b/src/icons/iconBlackSmall.png differ diff --git a/src/icons/iconColor.png b/src/icons/iconColor.png index c9fb08621..1523364c7 100644 Binary files a/src/icons/iconColor.png and b/src/icons/iconColor.png differ diff --git a/src/icons/iconColorSmall.png b/src/icons/iconColorSmall.png new file mode 100644 index 000000000..c9fb08621 Binary files /dev/null and b/src/icons/iconColorSmall.png differ diff --git a/src/icons/textBlack.png b/src/icons/textBlack.png index e1038c898..032262477 100644 Binary files a/src/icons/textBlack.png and b/src/icons/textBlack.png differ diff --git a/src/icons/textBlackSmall.png b/src/icons/textBlackSmall.png new file mode 100644 index 000000000..e1038c898 Binary files /dev/null and b/src/icons/textBlackSmall.png differ diff --git a/src/icons/textColor.png b/src/icons/textColor.png index 9d61b878f..cf34f4bd0 100644 Binary files a/src/icons/textColor.png and b/src/icons/textColor.png differ diff --git a/src/icons/textColorSmall.png b/src/icons/textColorSmall.png new file mode 100644 index 000000000..9d61b878f Binary files /dev/null and b/src/icons/textColorSmall.png differ diff --git a/src/index.html b/src/index.html index b422a96f8..18abc9563 100644 --- a/src/index.html +++ b/src/index.html @@ -39,8 +39,8 @@ -   - +   +
diff --git a/src/js/settings.js b/src/js/settings.js index 71559d2d1..f2cc04ae5 100644 --- a/src/js/settings.js +++ b/src/js/settings.js @@ -315,15 +315,15 @@ function setTheme(option) { switch (option) { case 'light': cssFile = './style/lightTheme.css'; - document.getElementById('menuText').src = 'icons/textBlack.png'; - document.getElementById('menuIcon').src = 'icons/iconBlack.png'; + document.getElementById('menuText').src = 'icons/textBlackSmall.png'; + document.getElementById('menuIcon').src = 'icons/iconBlackSmall.png'; document.getElementById('menuButton').style.color = 'black'; document.getElementById('reloadButton').style.color = 'black'; break; case 'dark': cssFile = './style/darkTheme.css'; - document.getElementById('menuText').src = 'icons/textColor.png'; - document.getElementById('menuIcon').src = 'icons/iconColor.png'; + document.getElementById('menuText').src = 'icons/textColorSmall.png'; + document.getElementById('menuIcon').src = 'icons/iconColorSmall.png'; document.getElementById('menuButton').style.color = 'white'; document.getElementById('reloadButton').style.color = 'white'; break;