From f1cbe3a4d83833d534fdc1635f743474d336fa2a Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Mon, 27 Dec 2021 13:47:31 +0300 Subject: [PATCH] Adding basic colors to tailwind theme Signed-off-by: Alex Andreev --- tailwind.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 1d2f2c9506..7357650c87 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -26,7 +26,14 @@ module.exports = { fontFamily: { sans: ["Roboto", "Helvetica", "Arial", "sans-serif"], }, - extend: {}, + extend: { + colors: { + textAccent: "var(--textColorAccent)", + textPrimary: "var(--textColorPrimary)", + textTertiary: "var(--textColorTertiary)", + textDimmed: "var(--textColorDimmed)", + }, + }, }, variants: { extend: {},