Conversation
Tannex
force-pushed
the
issue-22-compaz-rebrand
branch
from
July 19, 2026 11:33
5d01a87 to
433f76a
Compare
Owner
Author
|
Do we need attributions for this? |
Owner
Author
|
The mixture of rounded borders and difference in background color does not work. The background color bleeds outside the border, giving a very cheap feel. Either use borders that follow the exact cell edge if possible, or avoid re-coloring the background of popups. |
Tannex
force-pushed
the
issue-22-compaz-rebrand
branch
from
July 19, 2026 13:05
433f76a to
78fec0c
Compare
Tannex
force-pushed
the
issue-22-compaz-rebrand
branch
from
July 19, 2026 13:35
78fec0c to
8cca088
Compare
Replace the slate/teal palette with Ayu Dark (ayu-theme/ayu-colors), hardcoded as a named constant block so the TUI takes no dependency. Alpha-composited Ayu values (selection, status-chip fills) are pre-blended onto the editor background because terminal cells cannot layer translucent color. Stray hex values in views, status chips, and tui-shot's xterm colors now route through the palette, and style tests derive their SGR assertions from it instead of hardcoded fragments. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Review feedback: the elevated popup background bled outside the rounded border glyphs, which don't fill their cells. Popups (help, favorites, jq query) now keep the main background and are distinguished by border and title styling alone. Palette block and README credit the Ayu color scheme (MIT, ayu-theme/ayu-colors). Captures retaken, including the help popup. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Recolors the Compa/z TUI to Ayu Dark. Values are hardcoded in a named
ayuconstant block ininternal/compaz/view.go— no package or dependency added. The palette role structure is unchanged; this is a recolor, not a restructure.Stacked on PR #29 (
issue-22-compaz-rebrand) and merges last.Role → Ayu mapping
navy)#111827/#CCFBF1#0B0E14editor.bg /#E6E1CFpanel)#1F2937/#CBD5E1#141821ui.panel.bg /#BFBDB6editor.fgheader)#334155#15283E(selection tint over bg)#E6B450accent on#15283E#0B1220/ teal#2DD4BF#0F131Aui.popup.bg /#E6B450accent#5EEAD4#39BAE6syntax.tag#4ADE80#AAD94Csyntax.string#FBBF24#FFB454syntax.func#FB7185#F07178syntax.markup#94A3B8faint#ACB6BFsyntax.comment, faint (≈ Ayu's 55% alpha)#263449#E6B450accent bold on#18324F(selection.active pre-blended over bg)Alpha-composited Ayu values are pre-blended onto the editor background because terminal cells can't layer translucent color.
scripts/tui-shot's xterm colors updated to the Ayu bg/fg (only those two values — PR #30's geometry changes are untouched). Style tests now derive SGR assertions from the palette constants instead of hardcoded fragments.Screenshots (demo mode)
go build ./... && go vet ./... && go test ./...all pass; gofmt clean.🤖 Generated with Claude Code
Review follow-up