Merge pull request #54789 from nextcloud/fix/dark-theme-assistant

fix(theming): adjust assistant icon color on dark theme
This commit is contained in:
Ferdinand Thiessen 2025-09-02 14:24:59 +02:00 committed by GitHub
commit fb38f2fd19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -94,14 +94,13 @@ class DarkTheme extends DefaultTheme implements ITheme {
// Assistant colors (see default theme)
'--color-background-assistant' => '#221D2B',
'--color-border-assistant' => 'linear-gradient(125deg, #0C3A65 50%, #6204A5 125%)',
'--color-element-assistant-icon' => 'linear-gradient(285deg, #CDACE7 15.28%, #008FDB 39.98%, #A180E0 82.05%)',
'--color-element-error' => $colorErrorElement,
'--color-element-info' => $colorInfoElement,
'--color-element-success' => $colorSuccessElement,
'--color-element-warning' => $colorWarningElement,
'--color-error' => $colorError,
'--color-error-hover' => $this->util->lighten($colorError, 10),
'--color-error-text' => $colorErrorText,