Current Behavior
When using the Default theme, sync embed errors show up with foreground text and background color exactly the same -- you can't see the message, it's all red!
Expected Behavior
The background and foreground should be different colors. Ideally, a suitable contrast ratio should be achieved when inspecting, too.
Fixes and Workarounds
Using most other themes, such as the popular Minimal Theme, fixes the issue due to the different choices of default CSS variables.
Seems to be an issue with --background-modifier-error or something nearby in the following block
|
.sync-embed-error { |
|
padding: 12px 16px; |
|
background: var(--background-modifier-error); |
|
border: 1px solid var(--background-modifier-border); |
|
border-radius: 4px; |
|
color: var(--text-error); |
|
margin: 4px 0; |
|
font-size: 0.9em; |
|
} |
Current Behavior
When using the Default theme, sync embed errors show up with foreground text and background color exactly the same -- you can't see the message, it's all red!
Expected Behavior
The background and foreground should be different colors. Ideally, a suitable contrast ratio should be achieved when inspecting, too.
Fixes and Workarounds
Using most other themes, such as the popular Minimal Theme, fixes the issue due to the different choices of default CSS variables.
Seems to be an issue with
--background-modifier-erroror something nearby in the following blocksync-embeds/styles.css
Lines 213 to 221 in 5b27cff