Use named colors in table.css

This commit is contained in:
Kuba Orlik 2025-09-25 18:30:51 +02:00
parent 2c1916331a
commit c1a5a8a374

View File

@ -16,16 +16,16 @@ th {
} }
thead th { thead th {
background-color: #ddd; background-color: var(--color-brand-text-bg-08);
border-style: solid; border-style: solid;
border-width: 1px 0; border-width: 1px 0;
border-color: #777; border-color: var(--color-brand-text-bg-04);
padding: 9px 7px; padding: 9px 7px;
font-size: 14px; font-size: 14px;
} }
tr:hover { tr:hover {
background-color: #ccc !important; background-color: var(--color-brand-text-bg-07) !important;
} }
td { td {