summaryrefslogtreecommitdiffstats
path: root/apps/theming/lib
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2023-12-14 17:56:42 +0100
committerFerdinand Thiessen <opensource@fthiessen.de>2023-12-15 21:09:14 +0100
commit61f401da57d6d883dbee2b236f7c2f77e7fa9612 (patch)
tree39c7e3edbf5cd013d1d519333b659a13bcf2423c /apps/theming/lib
parent141d1e90260ca63f415d65060752f4c9d3e8eb28 (diff)
downloadnextcloud-server-61f401da57d6d883dbee2b236f7c2f77e7fa9612.tar.gz
nextcloud-server-61f401da57d6d883dbee2b236f7c2f77e7fa9612.zip
fix(theming): Adjust hover color to be accessible
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r--apps/theming/lib/Themes/CommonThemeTrait.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Themes/CommonThemeTrait.php b/apps/theming/lib/Themes/CommonThemeTrait.php
index 0b033b3fac9..38ca760db9f 100644
--- a/apps/theming/lib/Themes/CommonThemeTrait.php
+++ b/apps/theming/lib/Themes/CommonThemeTrait.php
@@ -66,7 +66,7 @@ trait CommonThemeTrait {
// used for buttons, inputs...
'--color-primary-element' => $colorPrimaryElement,
- '--color-primary-element-hover' => $this->util->mix($colorPrimaryElement, $colorMainBackground, 82),
+ '--color-primary-element-hover' => $this->util->mix($colorPrimaryElement, $colorMainBackground, 87),
'--color-primary-element-text' => $this->util->invertTextColor($colorPrimaryElement) ? '#000000' : '#ffffff',
// mostly used for disabled states
'--color-primary-element-text-dark' => $this->util->darken($this->util->invertTextColor($colorPrimaryElement) ? '#000000' : '#ffffff', 6),