refactor(tui): remove subtle syntax styles (#36746)

This commit is contained in:
James Long
2026-07-13 16:14:56 -04:00
committed by GitHub
parent ed1636e3bd
commit 748b0d8836
10 changed files with 10 additions and 101 deletions
@@ -136,14 +136,14 @@ test("theme swaps restyle active reasoning without resetting the stream", async
...RUN_THEME_FALLBACK,
block: {
...RUN_THEME_FALLBACK.block,
subtleSyntax: previousSyntax,
syntax: previousSyntax,
},
}
const next = {
...RUN_THEME_FALLBACK,
block: {
...RUN_THEME_FALLBACK.block,
subtleSyntax: nextSyntax,
syntax: nextSyntax,
},
}
const out = await setup({ theme: previous, onThemeRelease: (theme) => released.push(theme) })