Added basic theme support for future recoloring

Update .gitignore, border.scss, backgrounds.scss, and 12 more files
This commit is contained in:
2026-05-07 12:47:03 +02:00
parent 04cd1294ef
commit 95ffb881f9
15 changed files with 364 additions and 343 deletions
+4 -4
View File
@@ -11,18 +11,18 @@
}
tr {
background-color: #{$color-background-table-dual};
background-color: #{$color-background-table-tr-alt};
}
tr:nth-child(2n), th {
background-color: #{$color-background-table-main};
background-color: #{$color-background-table-tr-main};
}
td:not(:last-of-type), th:not(:last-of-type) {
border-right: 1.5px solid #{$color-table-border};
border-right: 1.5px solid #{$color-border-table};
}
tr:not(:last-of-type) td, th {
border-bottom: 1.5px solid #{$color-table-border};
border-bottom: 1.5px solid #{$color-border-table};
}
}