Commit 40e19efb85dc

Vincent Demeester <vincent@sbr.pm>
2026-02-11 16:28:45
fix(org-todos): removed dark background, kept subtle padding
Changed from dark background to just padding for visual separation. Background was too dark and reduced readability.
1 parent 9df6085
Changed files (1)
dots
pi
agent
extensions
org-todos
dots/pi/agent/extensions/org-todos/index.ts
@@ -279,8 +279,8 @@ export default function (pi: ExtensionAPI) {
       text = text.replace(/\[DONE\]/g, theme.bold(theme.fg("success", "[DONE]")));       // Green bold - completed
       text = text.replace(/\[CANX\]/g, theme.bold(theme.fg("error", "[CANX]")));         // Red bold - cancelled
       
-      // Wrap in Box with background for visual separation
-      const box = new Box(1, 1, (t) => theme.bg("customMessageBg", t));
+      // Wrap in Box with subtle padding for visual separation
+      const box = new Box(1, 1);
       box.addChild(new Text(text, 0, 0));
       return box;
     });