Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-08-29 17:46:54 +0300
committerJulius Härtl <jus@bitgrid.net>2018-08-30 11:37:05 +0300
commit5bae5bf3ebd6001a8ddbf988714e6bf90d48d692 (patch)
tree699fceb5f974ad82771022e5c86012f68503dc13 /apps/theming/tests
parent2bdc3b1d27d69390d21959e166816e5732f0551b (diff)
Make the default element color for bright theming colors lighter
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/tests')
-rw-r--r--apps/theming/tests/UtilTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/tests/UtilTest.php b/apps/theming/tests/UtilTest.php
index 247bcbae0b2..61d1dc48301 100644
--- a/apps/theming/tests/UtilTest.php
+++ b/apps/theming/tests/UtilTest.php
@@ -105,7 +105,7 @@ class UtilTest extends TestCase {
public function testElementColorOnBrightBackground() {
$elementColor = $this->util->elementColor('#ffffff');
- $this->assertEquals('#555555', $elementColor);
+ $this->assertEquals('#dddddd', $elementColor);
}
public function testGenerateRadioButtonWhite() {