Skip to content

Commit

Permalink
fix: shining result color on dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Feb 28, 2025
1 parent 98c1ea0 commit 2105f1d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugins/tiddlywiki/ai-tools/styles.tid
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tags: [[$:/tags/Stylesheet]]

.ai-conversation .ai-tools-message .ai-tools-message-toolbar {
background: <<colour sidebar-foreground-shadow>>;
color: white;
color: <<colour foreground>>;
padding: 0.25em 1em 0.25em 1em;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
Expand All @@ -36,7 +36,7 @@ tags: [[$:/tags/Stylesheet]]

.ai-conversation .ai-tools-message .ai-tools-message-toolbar .ai-tools-message-toolbar-button {
background: <<colour sidebar-foreground-shadow>>;
color: #333333;
color: <<colour foreground>>;
cursor: pointer;
display: inline-block;
outline: 0;
Expand Down Expand Up @@ -65,8 +65,8 @@ tags: [[$:/tags/Stylesheet]]

.ai-conversation .ai-tools-message.ai-tools-message-role-system {
width: 60%;
background: #4c4c80;
color: white;
background: <<colour footnote-target-background>>;
color: <<colour foreground>>;
}

.ai-conversation .ai-tools-message.ai-tools-message-role-user {
Expand All @@ -76,11 +76,11 @@ tags: [[$:/tags/Stylesheet]]
}

.ai-conversation .ai-tools-message.ai-tools-message-role-assistant {
background: #dfd;
background: <<colour tiddler-editor-background>>;
}

.ai-conversation .ai-tools-message.ai-tools-message-role-error {
background: #fdd;
background: <<colour notification-background>>;
}

.ai-conversation .ai-user-prompt {
Expand Down

0 comments on commit 2105f1d

Please sign in to comment.