From c1a5a8a37481ddbf8ae9134e77531ae9ab4c7003 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Thu, 25 Sep 2025 18:30:51 +0200 Subject: [PATCH] Use named colors in table.css --- src/tables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tables.css b/src/tables.css index 969353c..dc74fde 100644 --- a/src/tables.css +++ b/src/tables.css @@ -16,16 +16,16 @@ th { } thead th { - background-color: #ddd; + background-color: var(--color-brand-text-bg-08); border-style: solid; border-width: 1px 0; - border-color: #777; + border-color: var(--color-brand-text-bg-04); padding: 9px 7px; font-size: 14px; } tr:hover { - background-color: #ccc !important; + background-color: var(--color-brand-text-bg-07) !important; } td {