Fix stat panel background color (#92052)

## About The Pull Request
Just a fix for a stat panel background color, was broken after -
https://github.com/tgstation/tgstation/pull/92004
Also removed unused goonStyle from it. There is no browserOutput.css in
repo

## Why It's Good For The Game
No dark background in stat panel, even on light theme
This commit is contained in:
Aylong
2025-07-09 12:37:36 -05:00
committed by GitHub
parent ecc50bd13f
commit 499d5914bc
3 changed files with 3 additions and 25 deletions
+2 -7
View File
@@ -1,4 +1,5 @@
.light:root {
--color-base: #ffffff;
--scrollbar-base: #f2f2f2;
--scrollbar-thumb: #a7a7a7;
}
@@ -196,6 +197,7 @@ img {
* MARK: Dark theme colors
*/
.dark:root {
--color-base: #151515;
--scrollbar-base: #151515;
--scrollbar-thumb: #363636;
}
@@ -203,13 +205,6 @@ img {
body.dark {
background-color: #151515;
color: #b2c4dd;
scrollbar-base-color: #1c1c1c;
scrollbar-face-color: #3b3b3b;
scrollbar-3dlight-color: #252525;
scrollbar-highlight-color: #252525;
scrollbar-track-color: #1c1c1c;
scrollbar-arrow-color: #929292;
scrollbar-shadow-color: #3b3b3b;
}
.dark a {