diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-08-29 16:46:54 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-08-30 10:37:05 +0200 |
commit | 5bae5bf3ebd6001a8ddbf988714e6bf90d48d692 (patch) | |
tree | 699fceb5f974ad82771022e5c86012f68503dc13 /apps/theming/lib | |
parent | 2bdc3b1d27d69390d21959e166816e5732f0551b (diff) | |
download | nextcloud-server-5bae5bf3ebd6001a8ddbf988714e6bf90d48d692.tar.gz nextcloud-server-5bae5bf3ebd6001a8ddbf988714e6bf90d48d692.zip |
Make the default element color for bright theming colors lighter
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Util.php b/apps/theming/lib/Util.php index b72cc5b8996..b17382334d0 100644 --- a/apps/theming/lib/Util.php +++ b/apps/theming/lib/Util.php @@ -79,7 +79,7 @@ class Util { public function elementColor($color) { $l = $this->calculateLuminance($color); if($l>0.8) { - return '#555555'; + return '#dddddd'; } return $color; } |