From 59fc7a0a5b28068002f62749502f7eaa1871c055 Mon Sep 17 00:00:00 2001 From: Stas Medvedev Date: Tue, 11 Jun 2024 00:43:21 +0300 Subject: =?UTF-8?q?=D0=9D=D0=B0=D0=BA=D0=B8=D0=B4=D0=B0=D0=BB=20html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tailwind.config.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'tailwind.config.js') diff --git a/tailwind.config.js b/tailwind.config.js index 80af1a8..c901e71 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,16 @@ /** @type {import('tailwindcss').Config} */ + +const colors = require('tailwindcss/colors') + module.exports = { - content: ["./templates/*.{html,js}"], + content: ["./templates/**/*.{html,js}"], theme: { + colors: { + primary: colors.fuchsia, + secondary: colors.teal, + neutral: colors.gray, + ...colors + }, extend: {}, }, plugins: [], -- cgit v1.2.3