diff --git a/apps/dokploy/components/dashboard/settings/web-server/terminal.tsx b/apps/dokploy/components/dashboard/settings/web-server/terminal.tsx index e45b73d2..402ce57d 100644 --- a/apps/dokploy/components/dashboard/settings/web-server/terminal.tsx +++ b/apps/dokploy/components/dashboard/settings/web-server/terminal.tsx @@ -32,10 +32,14 @@ export const Terminal: React.FC = ({ id, serverId }) => { lineHeight: 1.4, convertEol: true, theme: { - cursor: resolvedTheme === "light" ? "#000000" : "transparent", - background: "rgba(0, 0, 0, 0)", - foreground: "currentColor", + cursor: resolvedTheme === "light" ? "#000000" : "#FFFFFF", + background: resolvedTheme === "light" ? "#FFFFFF" : "rgba(0, 0, 0, 0.9)", + foreground: resolvedTheme === "light" ? "#000000" : "#FFFFFF", + selectionForeground: resolvedTheme === "light" ? "#000000" : "#FFFFFF", }, + allowTransparency: true, + screenReaderMode: true, + scrollback: 1000, }); const addonFit = new FitAddon(); @@ -68,7 +72,7 @@ export const Terminal: React.FC = ({ id, serverId }) => { return (
-
+