From 38ac770bc91edf03bc5f3deba4d54e91c80e13f0 Mon Sep 17 00:00:00 2001 From: TkDodo Date: Mon, 24 Nov 2025 10:09:48 +0100 Subject: [PATCH] fix(ui): point hardcoded dark background colors to UI2 theme token values --- static/less/base.less | 4 ++-- static/less/shared-components.less | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/static/less/base.less b/static/less/base.less index 7808ae3c68d7d6..408ee72f4675ea 100644 --- a/static/less/base.less +++ b/static/less/base.less @@ -35,14 +35,14 @@ body { // Applied to body body.theme-dark { // theme.tokens.background.primary - background: #241D2A; + background: #272433; // theme.tokens.content.primary color: #F6F5FA; } body.theme-system { @media (prefers-color-scheme: dark) { // theme.tokens.background.primary - background: #241D2A; + background: #272433; // theme.content.primary color: #F6F5FA; } diff --git a/static/less/shared-components.less b/static/less/shared-components.less index 4a1f53e98db77c..7caf83c10dda4a 100644 --- a/static/less/shared-components.less +++ b/static/less/shared-components.less @@ -440,7 +440,7 @@ table.table.key-value { .theme-dark .loading .loading-indicator { // theme.tokens.background.primary - background: #241D2A; + background: #272433; } @-webkit-keyframes loading {