OpenHands/frontend/tailwind.config.js
Graham Neubig a241b9ff98
fix: Update frontend tests to support Node.js 22.x (#5444)
Co-authored-by: openhands <openhands@all-hands.dev>
2024-12-07 04:58:27 +01:00

41 lines
794 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',
},
},
},
darkMode: "class",
plugins: [
nextui({
defaultTheme: "dark",
layout: {
radius: {
small: "5px",
large: "20px",
},
},
themes: {
dark: {
colors: {
primary: "#4465DB",
},
}
}
}),
typography,
],
};