diff options
Diffstat (limited to 'apps/theming/lib/Themes')
-rw-r--r-- | apps/theming/lib/Themes/DarkTheme.php | 8 | ||||
-rw-r--r-- | apps/theming/lib/Themes/DefaultTheme.php | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/theming/lib/Themes/DarkTheme.php b/apps/theming/lib/Themes/DarkTheme.php index af374a01603..d33f13dc579 100644 --- a/apps/theming/lib/Themes/DarkTheme.php +++ b/apps/theming/lib/Themes/DarkTheme.php @@ -55,15 +55,15 @@ class DarkTheme extends DefaultTheme implements ITheme { $colorMainText = '#D8D8D8'; $colorMainBackground = '#171717'; $colorMainBackgroundRGB = join(',', $this->util->hexToRGB($colorMainBackground)); - $colorTextMaxcontrast = $this->util->darken($colorMainText, 30); + $colorTextMaxcontrast = $this->util->darken($colorMainText, 28); $colorBoxShadow = $this->util->darken($colorMainBackground, 70); $colorBoxShadowRGB = join(',', $this->util->hexToRGB($colorBoxShadow)); - $colorError = '#d91812'; + $colorError = '#ee312b'; $colorWarning = '#c28900'; - $colorSuccess = '#2d7b41'; - $colorInfo = '#0071ad'; + $colorSuccess = '#36914e'; + $colorInfo = '#007bbd'; return array_merge( $defaultVariables, diff --git a/apps/theming/lib/Themes/DefaultTheme.php b/apps/theming/lib/Themes/DefaultTheme.php index 44930e457fa..e215ade7b6d 100644 --- a/apps/theming/lib/Themes/DefaultTheme.php +++ b/apps/theming/lib/Themes/DefaultTheme.php @@ -112,7 +112,7 @@ class DefaultTheme implements ITheme { $colorBoxShadowRGB = join(',', $this->util->hexToRGB($colorBoxShadow)); $colorError = '#d91812'; - $colorWarning = '#c28900'; + $colorWarning = '#b88100'; $colorSuccess = '#2d7b41'; $colorInfo = '#0071ad'; |