mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
42 lines
824 B
JavaScript
42 lines
824 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import { nextui } from "@nextui-org/react";
|
|
import typography from '@tailwindcss/typography';
|
|
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'root-primary': '#171717',
|
|
'root-secondary': '#262626',
|
|
'hyperlink': '#007AFF',
|
|
'danger': '#EF3744',
|
|
'success': '#4CAF50',
|
|
},
|
|
},
|
|
},
|
|
darkMode: "class",
|
|
plugins: [
|
|
nextui({
|
|
defaultTheme: "dark",
|
|
layout: {
|
|
radius: {
|
|
small: "5px",
|
|
large: "20px",
|
|
},
|
|
},
|
|
themes: {
|
|
dark: {
|
|
colors: {
|
|
primary: "#4465DB",
|
|
},
|
|
}
|
|
}
|
|
}),
|
|
typography,
|
|
],
|
|
};
|