mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 16:50:55 -04:00
Merge pull request #33903 from nextcloud/enh/33834/fix-dark-contrast-theme
fix dark-contrast-theme
This commit is contained in:
commit
72e96c6eba
2 changed files with 2 additions and 0 deletions
|
|
@ -57,6 +57,7 @@ class DarkHighContrastTheme extends DarkTheme implements ITheme {
|
|||
$colorMainBackground = '#000000';
|
||||
|
||||
$variables['--color-main-background'] = $colorMainBackground;
|
||||
$variables['--color-main-background-translucent'] = 'rgba(var(--color-main-background-rgb), .1)';
|
||||
$variables['--color-main-text'] = $colorMainText;
|
||||
|
||||
$variables['--color-background-dark'] = $this->util->lighten($colorMainBackground, 30);
|
||||
|
|
|
|||
|
|
@ -54,6 +54,7 @@ class HighContrastTheme extends DefaultTheme implements ITheme {
|
|||
$colorMainBackground = '#ffffff';
|
||||
|
||||
$variables['--color-main-background'] = $colorMainBackground;
|
||||
$variables['--color-main-background-translucent'] = 'rgba(var(--color-main-background-rgb), .1)';
|
||||
$variables['--color-main-text'] = $colorMainText;
|
||||
|
||||
$variables['--color-background-dark'] = $this->util->darken($colorMainBackground, 30);
|
||||
|
|
|
|||
Loading…
Reference in a new issue