mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00

* update tailwind * install heroui * Introduce HeroUIProvider and reorganize providers * changeset * use tailwind config * use custom theme * changeset * Delete .changeset/large-boxes-behave.md
23 lines
407 B
JavaScript
23 lines
407 B
JavaScript
const { heroui } = require("@heroui/react")
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}", "./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
darkMode: "class",
|
|
plugins: [
|
|
heroui({
|
|
defaultTheme: "vscode",
|
|
themes: {
|
|
vscode: {
|
|
colors: {
|
|
background: "",
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
}
|