Browse Source

fix(app): more contrast in terminal text

Adam 3 tháng trước cách đây
mục cha
commit
ecbcbfbe90
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/app/src/components/terminal.tsx

+ 1 - 1
packages/app/src/components/terminal.tsx

@@ -53,7 +53,7 @@ export const Terminal = (props: TerminalProps) => {
     const variant = mode === "dark" ? currentTheme.dark : currentTheme.light
     if (!variant?.seeds) return fallback
     const resolved = resolveThemeVariant(variant, mode === "dark")
-    const text = resolved["text-base"] ?? fallback.foreground
+    const text = resolved["text-stronger"] ?? fallback.foreground
     const background = resolved["background-stronger"] ?? fallback.background
     return {
       background,