CC: Tweaked

CC: Tweaked

42M Downloads

Computer #0 hard to read

SimonFJ20 opened this issue ยท 2 comments

commented

On the web document computer emolator window, the text at the bottom left besides the power button is bare visible,
because the text color is nearly the same as the background color.

The sugestion here is just to add a css rule:

.styles_terminalInfo__4UlYr {
    color: #282828;
}

I found that #282828 is a nice color, matcing the power button

Original:

Original

Sugestion

Sugestion

commented

I believe that this is more accurately an illuminate issue. Probably a side-effect of darkmode.

commented

This looks to be an issue with cc-web-term. We've got a style for this label, but the class isn't actually used within the component:

https://github.com/SquidDev-CC/cc-web-term/blob/706bd41e272cf878278eb50a5e5d300291499013/src/styles.css#L57-L60

Maybe I need to start using a shadow DOM for this, so CSS styles from the main page don't leak through to the terminal :D:.