aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-08 10:13:18 +0200
committerGitHub <noreply@github.com>2022-09-08 10:13:18 +0200
commitb9a50388e46d7e4beade5af96c8be154b66243ca (patch)
treeea27621652d9226553c557033e4c8451c68c6e0a
parent107aeb36e5435c9eb3c6b597d5a7da4f4909f5a9 (diff)
parent7e5d973e7e403a222a1c9b9814cbf249d7c56b55 (diff)
downloadnextcloud-server-b9a50388e46d7e4beade5af96c8be154b66243ca.tar.gz
nextcloud-server-b9a50388e46d7e4beade5af96c8be154b66243ca.zip
Merge pull request #33946 from nextcloud/fix/dark-theme-browser
Remove non existing lighter colour
-rw-r--r--apps/theming/lib/Themes/DarkTheme.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/theming/lib/Themes/DarkTheme.php b/apps/theming/lib/Themes/DarkTheme.php
index dd894635751..74704ad553a 100644
--- a/apps/theming/lib/Themes/DarkTheme.php
+++ b/apps/theming/lib/Themes/DarkTheme.php
@@ -76,7 +76,6 @@ class DarkTheme extends DefaultTheme implements ITheme {
'--color-primary-element' => $this->util->elementColor($this->primaryColor, false),
'--color-primary-element-hover' => $this->util->mix($this->util->elementColor($this->primaryColor, false), $colorMainBackground, 80),
'--color-primary-element-light' => $this->util->lighten($this->util->elementColor($this->primaryColor, false), 15),
- '--color-primary-element-lighter' => $this->util->mix($this->util->elementColor($this->primaryColor, false), $colorMainBackground, -70),
'--color-text-maxcontrast' => $this->util->darken($colorMainText, 30),
'--color-text-light' => $this->util->darken($colorMainText, 10),