From 55531f9e0de290e77e45661e97c2bbb7c4d96028 Mon Sep 17 00:00:00 2001 From: Marciel404 <48138111+eumarciel404@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:39:46 -0300 Subject: [PATCH] fix: correcting context-user-name-color (#489) * fix: correcting context-user-name-color I only realized now that the context user name is the wrong color in light mode * fix: removing "!important" --- .../core/src/components/discord-command/DiscordCommand.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/core/src/components/discord-command/DiscordCommand.ts b/packages/core/src/components/discord-command/DiscordCommand.ts index 0e5302721..4e54f3d66 100644 --- a/packages/core/src/components/discord-command/DiscordCommand.ts +++ b/packages/core/src/components/discord-command/DiscordCommand.ts @@ -77,6 +77,10 @@ export class DiscordCommand extends LitElement implements LightTheme { margin-right: 0; } + :host([light-theme]) .discord-replied-message-username { + color: rgb(46, 51, 56); + } + :host([compact-mode]) .discord-context-user { display: flex; align-items: center;