From d0295a69bc3d01a143ee5628b31c8a2cad406959 Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Thu, 1 Apr 2021 12:12:05 +0200 Subject: [PATCH] add matching bg color --- packages/website/tailwind.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/website/tailwind.config.js b/packages/website/tailwind.config.js index f23f6b71..363396a5 100644 --- a/packages/website/tailwind.config.js +++ b/packages/website/tailwind.config.js @@ -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"), + }, }); }), ],