Fix: table colors

This commit is contained in:
hyzen
2026-06-20 19:36:35 +05:30
parent d4efc8e853
commit 74cf7505ef
2 changed files with 26 additions and 0 deletions

View File

@@ -1528,3 +1528,16 @@
font-size: 0.72rem;
}
}
/* Markdown tables (uninotes, blog posts, etc.): match page background
and use the normal text color for borders, instead of the theme's
grey/white box styling meant for blockquotes/code blocks. */
table {
background-color: var(--background-color);
}
td,
th {
border: 1px solid var(--foreground-color);
color: var(--foreground-color);
}