feat[table]: Added table coloring

This commit is contained in:
Judah Sotomayor 2023-11-27 12:27:46 -05:00
parent 3e68fbd70b
commit af54cec326
Signed by: judahsotomayor
SSH Key Fingerprint: SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI

View File

@ -129,3 +129,17 @@ position: relative;
#mode-selector.dark button {
color: #FFF
}
table, th, td{
border: 1px solid;
border-collapse: collapse;
color: #000;
padding: 2pt;
}
th {
border: 2px solid;
}
body.dark table, body.dark th, body.dark td {
color: #FFF;
}