From e6185f499a160c0e951dbceb55fe4fa101287e74 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Mon, 10 Jun 2024 08:44:08 -0400 Subject: [PATCH] refactor(tailwind): remove unused colors. convert to ESM --- tailwind.config.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index d8329ccf9..44eaf6f1e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,4 +1,5 @@ -module.exports = { +/** @type {import('tailwindcss').Config} */ +export default { content: ['./src/**/*.js', './src/**/*.ts', './src/**/*.tsx'], darkMode: 'class', theme: { @@ -13,11 +14,6 @@ module.exports = { darker: '#090E15', darkest: '#000209', }, - primary: '#203354', - success: '#2CC966', - info: '#8BA9C6', - warning: '#FCAA67', - danger: '#B7524F', }, }, },