diff options
Diffstat (limited to 'apps/theming/lib/Themes/DefaultTheme.php')
-rw-r--r-- | apps/theming/lib/Themes/DefaultTheme.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/theming/lib/Themes/DefaultTheme.php b/apps/theming/lib/Themes/DefaultTheme.php index cb4ed510068..0a4ac44afb6 100644 --- a/apps/theming/lib/Themes/DefaultTheme.php +++ b/apps/theming/lib/Themes/DefaultTheme.php @@ -147,6 +147,9 @@ class DefaultTheme implements ITheme { '--color-success' => '#46ba61', '--color-success-rgb' => join(',', $this->util->hexToRGB('#46ba61')), '--color-success-hover' => $this->util->mix('#46ba61', $colorMainBackground, 60), + '--color-info' => '#006aa3', + '--color-info-rgb' => join(',', $this->util->hexToRGB('#006aa3')), + '--color-info-hover' => $this->util->mix('#006aa3', $colorMainBackground, 60), // used for the icon loading animation '--color-loading-light' => '#cccccc', |