From f53768612b1e2268697b5444e502032ef9f3fb3c Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Tue, 23 May 2023 23:45:12 -0400 Subject: copying from old repo --- extension/react-app/tailwind.config.cjs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 extension/react-app/tailwind.config.cjs (limited to 'extension/react-app/tailwind.config.cjs') diff --git a/extension/react-app/tailwind.config.cjs b/extension/react-app/tailwind.config.cjs new file mode 100644 index 00000000..276d3b8a --- /dev/null +++ b/extension/react-app/tailwind.config.cjs @@ -0,0 +1,22 @@ +/** @type {import('tailwindcss').Config} */ +const colors = require("tailwindcss/colors"); + +module.exports = { + content: [ + "./index.html", + "./src/**/*.{js,ts,jsx,tsx}", + "./src/*.{js,ts,jsx,tsx}", + ], + theme: { + extend: {}, + colors: { + "vsc-background": "rgb(var(--vsc-background) / )", + "secondary-dark": "rgb(var(--secondary-dark) / )", + ...colors, + }, + }, + plugins: [], + corePlugins: { + preflight: false, + }, +}; -- cgit v1.2.3-70-g09d2