golang-design/ssaplayground

more complete dark mode

mark-pictor-csec opened this issue · 2 comments

I'm glad to see a dark mode for the output view, but the rest of the UI remains pretty bright.

With Chrome's Stylus extension, the following is enough to dim the remainder. Feel free to pick better colors, of course! 🙂

#banner{
    background-color:#566;
}
#snippet,#about{
    background-color:#665;
}
#funcname, #gcflags {
    background-color: #343;
    border: 1px solid #454;
}
.gutter.gutter-horizontal {
    filter: invert(.7);
}
input[type=button] {
    background: #0044cb;
    color: #000;
}

Thanks for getting to this quickly, but for me the top and side are now dark in light mode, and light in dark mode :)

Should be fixed now.