Skip to content

Commit eaab49b

Browse files
jitrcclaude
andcommitted
fix: darken log dock background for readable text, bump to 0.4.2
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 16a9073 commit eaab49b

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

mailsweep/ui/log_dock.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616

1717
_LEVEL_COLORS = {
18-
logging.DEBUG: QColor(150, 150, 150),
19-
logging.INFO: QColor(220, 220, 220),
18+
logging.DEBUG: QColor(140, 140, 140),
19+
logging.INFO: QColor(212, 212, 212),
2020
logging.WARNING: QColor(255, 200, 50),
2121
logging.ERROR: QColor(255, 80, 80),
2222
logging.CRITICAL: QColor(255, 0, 0),
@@ -70,6 +70,9 @@ def _build_ui(self) -> None:
7070
self._text = QPlainTextEdit()
7171
self._text.setReadOnly(True)
7272
self._text.setMaximumBlockCount(5000)
73+
self._text.setStyleSheet(
74+
"QPlainTextEdit { background-color: #1e1e1e; }"
75+
)
7376
font = self._text.font()
7477
font.setFamily("monospace")
7578
font.setPointSize(9)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mailsweep"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "IMAP Mailbox Analyzer & Cleaner — visualize and reclaim email storage"
55
readme = "README.md"
66
license = {text = "MIT"}

0 commit comments

Comments
 (0)