[Probably a deliberate design]The comment preview is white in dark mode
The comment preview is white in light mode:
However, in dark mode, it's also white:
I don't know if this was deliberately designed... If so, please let me know Otherwise, fix it please.
I made a user style to fix this.
/*--color-scheme: dark; is dark mode, but idk how to detect it.*/
.sa-comment-preview-inner {
color: rgb(255, 255, 255);
background-color: rgb(0 0 0 / 90%);
filter: drop-shadow(0px 5px 5px rgb(255 255 255 / 20%));
}
@supports (backdrop-filter: blur(16px)) {
.sa-comment-preview-inner {
background-color: rgb(0 0 0 / 75%);
backdrop-filter: blur(16px);
}
}
...and it worked well on turbowarp.org/editor
I wanted to send a pull request, but i have no idea where to put the code...(and also i don't exactly know how to send a pull request) and I am somehow weak in english, perhaps there may be content that you can't understand well, but I don't think there will be too much reading barriers
normally addon stuff goes to Scratch Addons to fix but our dark mode works very differently from theirs so this is our problem
normally addon stuff goes to Scratch Addons to fix but our dark mode works very differently from theirs so this is our problem
thanks for telling me this.