summaryrefslogtreecommitdiff
path: root/ui/styles
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2025-01-04 12:27:33 -0500
committerKit La Touche <kit@transneptune.net>2025-01-04 12:27:33 -0500
commit699901355c37dcf0bc9f5882cb0bfeeb3297c976 (patch)
treee4b3740ae96869865ff41063a76683300d12378a /ui/styles
parent61fd2701a93e1c75408f75ea95de7a48581327a2 (diff)
Variablize more colours
Diffstat (limited to 'ui/styles')
-rw-r--r--ui/styles/messages.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/styles/messages.css b/ui/styles/messages.css
index af4252a..81afe47 100644
--- a/ui/styles/messages.css
+++ b/ui/styles/messages.css
@@ -26,7 +26,7 @@
.message-run > .username {
color: var(--colour-message-run-text);
- background-color: rgb(67, 88, 156);
+ background-color: var(--colour-message-run-other-bg);
}
.message {
@@ -34,7 +34,7 @@
}
.message:hover {
- background-color: rgb(21, 28, 49);
+ background-color: var(--colour-message-hover-bg);
}
.message .handle {
@@ -47,7 +47,7 @@
padding: 0.25rem;
border-radius: 0.25rem;
display: none;
- background-color: rgb(67, 88, 156);
+ background-color: var(--colour-message-bg);
}
.message:hover .handle {
@@ -85,6 +85,6 @@
.message-body pre {
border: 1px solid #312e81;
border-radius: 0.25rem;
- background-color: #282555;;
+ background-color: var(--colour-message-run-text);
padding: 0.25rem;
}