Jorg3Lucas / jenkins-modern-themes

https://jorg3lucas.github.io/jenkins-modern-themes/
MIT License
23 stars 10 forks source link

Really low contrast for console output #62

Closed paulvt closed 2 years ago

paulvt commented 2 years ago

If I look at the CSS it should be #e9eded on #0c0c0c, but it doesn't turn out that way? It is hardly readable unfortunately.

Screenshot from 2022-04-29 09-55-10

greenflowers commented 2 years ago

I can confirm the issue. I could fixed that by changing:

console-output pre{position:relative;font-family:Roboto Mono,Menlo,monospace!important;font-size:12px;background:#0c0c0c;color:#ffffff!important;cursor:text}

AirOnSkin commented 2 years ago

Can confirm as well. I added the following extra CSS: pre {color: #bbbbbb !important}

offa commented 2 years ago

PR to fix this: #71

offa commented 2 years ago

The script console is affected too. It seems to use other CSS settings though.

tobias-trabelsi-dbschenker commented 2 years ago

@offa @Jorg3Lucas can you confirm that this fix is deployed and working properly? we still have very low contrast

offa commented 2 years ago

Wired, the PR has been merged, but the changes got lost somehow!?

tobias-trabelsi-dbschenker commented 2 years ago

Seems like it. For now i am overwriting this specific part with an additional css text entry in jenkins:

.console-output, .console-output pre {
  position: relative;
  font-family: Roboto Mono,Menlo,monospace!important;
  font-size: 12px;
  background: #0c0c0c;
  color: #e9eded !important;
  cursor: text;
}

but to me it seems as this issue is not closed :/