From f783c1d73e457eca5322857cce4f45b84b755f26 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 25 Apr 2023 18:30:23 +0200 Subject: [PATCH] chore: remove tailwind Signed-off-by: Gabriel --- packages/routing/tailwind.config.js | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 packages/routing/tailwind.config.js diff --git a/packages/routing/tailwind.config.js b/packages/routing/tailwind.config.js deleted file mode 100644 index 0feb6790ac..0000000000 --- a/packages/routing/tailwind.config.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * Copyright (c) OpenLens Authors. All rights reserved. - * Licensed under MIT License. See LICENSE in root directory for more information. - */ - -const path = require("path"); - -module.exports = { - content: [path.join(__dirname, "src/**/*.tsx")], - darkMode: "class", - theme: { - fontFamily: { - sans: ["Roboto", "Helvetica", "Arial", "sans-serif"], - }, - extend: { - colors: { - textAccent: "var(--textColorAccent)", - textPrimary: "var(--textColorPrimary)", - textTertiary: "var(--textColorTertiary)", - textDimmed: "var(--textColorDimmed)", - }, - }, - }, - variants: { - extend: {}, - }, - plugins: [], -};