This commit is contained in:
ronny abraham 2025-01-26 14:20:37 +02:00
parent d6243a4b2f
commit 81ab286659
2 changed files with 4 additions and 6 deletions

View file

@ -45,9 +45,7 @@ blockquote
// Tables
table
color: $table-color
th, td
border-color: $table-border-color
border: 1px solid $table-border-color
th
background-color: $table-header-bg
@ -56,7 +54,7 @@ th
tr:nth-child(even)
background-color: color.adjust($background-color, $lightness: 5%)
background-color: color.adjust($table-header-bg, $lightness: 15%)
/* Code Block Styles */
pre, code

View file

@ -41,8 +41,8 @@ $toc-anchor-hover-color: color.adjust($secondary-color, $lightness: -10%)
// Tables
$table-color: $text-color
$table-header-color: $text-color
$table-header-bg: #ede0d1 // Light warm tan for table headers
$table-border-color: #cabfa5 // Soft brown-gray for borders
$table-header-bg: #cabfa5 // Light warm tan for table headers
$table-border-color: #ede0d1 // Soft brown-gray for borders
$default-header-sizes: ()
$default-header-sizes: map.set($default-header-sizes, h1, 2.5em)