Skip to content

Commit fc29002

Browse files
dhoebenwendevlin
andauthored
Update ha-assist-chat.ts (#23790)
Co-authored-by: Wendelin <[email protected]>
1 parent 2f5fd6f commit fc29002

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/components/ha-assist-chat.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ export class HaAssistChat extends LitElement {
532532
float: var(--float-end);
533533
text-align: right;
534534
border-bottom-right-radius: 0px;
535-
background-color: var(--primary-color);
535+
background-color: var(--chat-background-color-user, var(--primary-color));
536536
color: var(--text-primary-color);
537537
direction: var(--direction);
538538
}
@@ -543,7 +543,10 @@ export class HaAssistChat extends LitElement {
543543
margin-inline-start: initial;
544544
float: var(--float-start);
545545
border-bottom-left-radius: 0px;
546-
background-color: var(--secondary-background-color);
546+
background-color: var(
547+
--chat-background-color-hass,
548+
var(--secondary-background-color)
549+
);
547550
548551
color: var(--primary-text-color);
549552
direction: var(--direction);

0 commit comments

Comments
 (0)