aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/lib/Themes/DarkTheme.php
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2022-11-22 01:54:07 +0000
committerChristopher Ng <chrng8@gmail.com>2022-11-22 18:42:56 +0000
commita0266d1b1668fb2751c78057ffcfacca6f4b2ae8 (patch)
tree979ba2e9ea2a6421c53b2cf1e74cb2918975cf3f /apps/theming/lib/Themes/DarkTheme.php
parent0b21a9ac6f85d46097bee08a1a25a10ba50a94da (diff)
downloadnextcloud-server-a0266d1b1668fb2751c78057ffcfacca6f4b2ae8.tar.gz
nextcloud-server-a0266d1b1668fb2751c78057ffcfacca6f4b2ae8.zip
Fix border color contrast
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/theming/lib/Themes/DarkTheme.php')
-rw-r--r--apps/theming/lib/Themes/DarkTheme.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/Themes/DarkTheme.php b/apps/theming/lib/Themes/DarkTheme.php
index ecd4c7d3fd6..e43d0c04e98 100644
--- a/apps/theming/lib/Themes/DarkTheme.php
+++ b/apps/theming/lib/Themes/DarkTheme.php
@@ -89,8 +89,8 @@ class DarkTheme extends DefaultTheme implements ITheme {
'--color-box-shadow' => $colorBoxShadow,
'--color-box-shadow-rgb' => $colorBoxShadowRGB,
- '--color-border' => $this->util->lighten($colorMainBackground, 7),
- '--color-border-dark' => $this->util->lighten($colorMainBackground, 14),
+ '--color-border' => $this->util->lighten($colorMainBackground, 30),
+ '--color-border-dark' => $this->util->lighten($colorMainBackground, 38),
'--background-invert-if-dark' => 'invert(100%)',
'--background-invert-if-bright' => 'no',