add matching bg color

This commit is contained in:
Karol Wypchlo 2021-04-01 12:12:05 +02:00
parent 251707bb8a
commit d0295a69bc
1 changed files with 4 additions and 1 deletions

View File

@ -71,7 +71,10 @@ module.exports = {
require("@tailwindcss/typography"),
plugin(function ({ addBase, theme }) {
addBase({
body: { color: theme("textColor.palette.600") },
body: {
color: theme("textColor.palette.600"),
backgroundColor: theme("backgroundColor.palette.600"),
},
});
}),
],