shrink vertical tag padding, make text black in light mode

This commit is contained in:
2021-04-07 17:49:26 -04:00
parent fffdb87ca7
commit 03b882d08d
2 changed files with 11 additions and 3 deletions

View File

@@ -4,6 +4,14 @@ module.exports = {
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
color: "black",
},
p: {
color: "black",
},
},
dark: {
css: {
color: "white",
@@ -62,4 +70,4 @@ module.exports = {
plugins: [
require('@tailwindcss/typography')
],
}
}