From 38a51070fc528c14215eb223edea9bf6cc8160ed Mon Sep 17 00:00:00 2001 From: Shane Kilkelly Date: Mon, 29 Jul 2019 11:08:49 +0100 Subject: [PATCH] Desktop: add `depthColor` for solarized light and dark themes (#1765) --- ElectronClient/app/theme.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ElectronClient/app/theme.js b/ElectronClient/app/theme.js index acd5c21124..608aec435f 100644 --- a/ElectronClient/app/theme.js +++ b/ElectronClient/app/theme.js @@ -158,6 +158,7 @@ const solarizedLightStyle = { urlColor: "#268bd2", backgroundColor2: "#002b36", + depthColor: 'rgb(100, 182, 253, OPACITY)', color2: "#eee8d5", selectedColor2: "#6c71c4", colorError2: "#cb4b16", @@ -194,6 +195,7 @@ const solarizedDarkStyle = { urlColor: "#268bd2", backgroundColor2: "#073642", + depthColor: 'rgb(200, 200, 200, OPACITY)', color2: "#eee8d5", selectedColor2: "#6c71c4", colorError2: "#cb4b16",