Skip to content

Commit aca3e3a

Browse files
authored
fix: fixes ansi-to-html fallback colors (#3635)
1 parent 241d349 commit aca3e3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/components/LogViewer/SimpleLogItem.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import stripAnsi from "strip-ansi";
1919
2020
const ansiConvertor = new AnsiConvertor({
2121
escapeXML: false,
22-
fg: "oklch(var(--base-content-color))",
23-
bg: "oklch(var(--base-color))",
22+
fg: "var(--color-base-content)",
23+
bg: "var(--color-base-100)",
2424
});
2525
2626
defineProps<{

0 commit comments

Comments
 (0)