fix(coding-agent): respect export theme backgrounds closes #2565

This commit is contained in:
Mario Zechner
2026-03-24 21:27:19 +01:00
parent bab58f821d
commit a949490f29
2 changed files with 6 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
### Fixed
- Fixed `/export` HTML backgrounds to honor `theme.export.pageBg`, `cardBg`, and `infoBg` instead of always deriving them from `userMessageBg` ([#2565](https://github.com/badlogic/pi-mono/issues/2565))
- Fixed interactive bash execution collapsed previews to recompute visual line wrapping at render time, so previews respect the current terminal width after resizes and split-pane width changes ([#2569](https://github.com/badlogic/pi-mono/issues/2569))
- Fixed RPC `get_session_stats` to expose `contextUsage`, so headless clients can read actual current context-window usage instead of deriving it from token totals ([#2550](https://github.com/badlogic/pi-mono/issues/2550))
- Fixed `pi update` for git packages to fetch only the tracked target branch with `--no-tags`, reducing unrelated branch and tag noise while preserving force-push-safe updates ([#2548](https://github.com/badlogic/pi-mono/issues/2548))

View File

@@ -149,10 +149,11 @@ function generateHtml(sessionData: SessionData, themeName?: string): string {
const themeVars = generateThemeVars(themeName);
const colors = getResolvedThemeColors(themeName);
const exportColors = deriveExportColors(colors.userMessageBg || "#343541");
const bodyBg = exportColors.pageBg;
const containerBg = exportColors.cardBg;
const infoBg = exportColors.infoBg;
const themeExport = getThemeExportColors(themeName);
const derivedExportColors = deriveExportColors(colors.userMessageBg || "#343541");
const bodyBg = themeExport.pageBg ?? derivedExportColors.pageBg;
const containerBg = themeExport.cardBg ?? derivedExportColors.cardBg;
const infoBg = themeExport.infoBg ?? derivedExportColors.infoBg;
// Base64 encode session data to avoid escaping issues
const sessionDataBase64 = Buffer.from(JSON.stringify(sessionData)).toString("base64");