mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
28 lines
591 B
JavaScript
28 lines
591 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: {
|
|
fontFamily: {
|
|
"azeret-mono": ['"Azeret Mono"', "monospace"],
|
|
},
|
|
},
|
|
},
|
|
// Toggle dark-mode based on .dark class or data-mode="dark"
|
|
darkMode: ["class", '[data-mode="dark"]', '[class="vs-dark"]'],
|
|
plugins: [
|
|
heroui({
|
|
defaultTheme: "vscode",
|
|
themes: {
|
|
vscode: {
|
|
colors: {
|
|
background: "",
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
}
|