From 512e0bd9c0692b718b28db4cf7005d8f1ce2edbd Mon Sep 17 00:00:00 2001 From: Eduardo Figueroa Date: Fri, 12 Sep 2025 16:32:32 -0700 Subject: [PATCH] Added sleeper-like K and DEF colors --- static/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/static/style.css b/static/style.css index fb3cb42..76c8d68 100644 --- a/static/style.css +++ b/static/style.css @@ -534,6 +534,18 @@ color: rgb(255, 174, 88); } +.player-pill.k { + border-color: rgb(201, 108, 255); + background: rgba(201, 108, 255, 0.1); + color: rgb(201, 108, 255); +} + +.player-pill.def { + border-color: rgb(191, 95, 64); + background: rgba(191, 95, 64, 0.1); + color: rgb(191, 95, 64); +} + .no-games-week { text-align: center; color: var(--text-light);