Merge pull request #25604 from nextcloud/bugfix/noid/fix-hover-background-for-dark-mode

Fix hover background for dark mode
This commit is contained in:
Roeland Jago Douma 2021-02-13 15:01:57 +01:00 committed by GitHub
commit 3b8cf10a8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,9 @@
$color-main-text: #d8d8d8;
$color-main-background: #181818;
$color-background-dark: lighten($color-main-background, 4%);
$color-background-darker: lighten($color-main-background, 8%);
$color-background-hover: lighten($color-main-background, 4%);
$color-background-dark: lighten($color-main-background, 7%);
$color-background-darker: lighten($color-main-background, 14%);
$color-placeholder-light: lighten($color-main-background, 10%);
$color-placeholder-dark: lighten($color-main-background, 20%);