Move hardcoded colors to theme

This commit is contained in:
QuickMythril
2024-02-23 11:42:50 -05:00
parent d84ab71d32
commit f316aa1178
7 changed files with 40 additions and 26 deletions

View File

@@ -63,13 +63,13 @@ export const chatStyles = css`
.message-data-name {
user-select: none;
color: #03a9f4;
color: var(--qchat-name);
margin-bottom: 5px;
}
.forwarded-text {
user-select: none;
color: #03a9f4;
color: var(--accent-color);
margin-bottom: 5px;
}
@@ -81,7 +81,7 @@ export const chatStyles = css`
}
.message-data-my-name {
color: #05be0e;
color: var(--qchat-my-name);
font-weight: bold;
}