Skip to content

Commit 036875d

Browse files
authored
Merge pull request #55305 from nextcloud/backport/55296/stable32
2 parents bb94f3b + 3a4fb03 commit 036875d

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

apps/theming/css/default.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
/* Border for AI generated content */
6262
--color-border-assistant: linear-gradient(125deg, #7398FE 50%, #6104A4 125%);
6363
/* Background for primary buttons to interact with the Assistant (e.g. generate content) */
64-
--color-element-assistant: linear-gradient(238deg, #A569D3 12%, #00679E 39%, #422083 86%);
64+
--color-element-assistant: linear-gradient(214deg, #A569D3 12%, #00679E 39%, #422083 86%);
6565
/* Icon color only to be used for the Assistant icon */
66-
--color-element-assistant-icon: linear-gradient(285deg, #9669D3 15%, #00679E 40%, #492083 80%);
66+
--color-element-assistant-icon: linear-gradient(214deg, #9669D3 15%, #00679E 40%, #492083 80%);
6767
--font-face: system-ui, -apple-system, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
6868
--default-font-size: 15px;
6969
--font-size-small: 13px;

apps/theming/lib/Themes/DarkTheme.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ public function getCSSVariables(): array {
9494
// Assistant colors (see default theme)
9595
'--color-background-assistant' => '#221D2B',
9696
'--color-border-assistant' => 'linear-gradient(125deg, #0C3A65 50%, #6204A5 125%)',
97-
'--color-element-assistant-icon' => 'linear-gradient(285deg, #CDACE7 15.28%, #008FDB 39.98%, #A180E0 82.05%)',
97+
'--color-element-assistant' => 'linear-gradient(214deg, #C8A3E8 12%, #007CFF 39%, #C297DD 86%)',
98+
'--color-element-assistant-icon' => 'linear-gradient(214deg, #CDACE7 15.28%, #008FDB 39.98%, #A180E0 82.05%)',
9899

99100
'--color-element-error' => $colorErrorElement,
100101
'--color-element-info' => $colorInfoElement,

apps/theming/lib/Themes/DefaultTheme.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ public function getCSSVariables(): array {
185185
// Assistant colors (marking AI generated content)
186186
'--color-background-assistant' => '#F6F5FF', // Background for AI generated content
187187
'--color-border-assistant' => 'linear-gradient(125deg, #7398FE 50%, #6104A4 125%)', // Border for AI generated content
188-
'--color-element-assistant' => 'linear-gradient(238deg, #A569D3 12%, #00679E 39%, #422083 86%)', // Background of primary buttons to interact with the Assistant (e.g. generate content)
189-
'--color-element-assistant-icon' => 'linear-gradient(285deg, #9669D3 15%, #00679E 40%, #492083 80%)', // The color used for the Assistant icon
188+
'--color-element-assistant' => 'linear-gradient(214deg, #A569D3 12%, #00679E 39%, #422083 86%)', // Background of primary buttons to interact with the Assistant (e.g. generate content)
189+
'--color-element-assistant-icon' => 'linear-gradient(214deg, #9669D3 15%, #00679E 40%, #492083 80%)', // The color used for the Assistant icon
190190

191191
'--font-face' => "system-ui, -apple-system, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",
192192
'--default-font-size' => '15px',

0 commit comments

Comments
 (0)