Uh oh!
There was an error while loading. Please reload this page.
fix(tui): fix system theme contrast with transparency - #13239
Closed
akronb wants to merge 17 commits into
Closed
Conversation
Contributor
The following comment was made by an LLM, it may be inaccurate: No duplicate PRs found |
akronbforce-pushed
the
fix-transparency
branch
from
February 13, 2026 20:32
7981bdd to
84889abCompareakronbforce-pushed
the
fix-transparency
branch
from
February 19, 2026 20:26
c980d99 to
be685efCompareakronbforce-pushed
the
fix-transparency
branch
from
February 19, 2026 21:22
be685ef to
5f86dacCompare6 tasks
graelo
commented
Mar 16, 2026
I used these changes on top of |
kommander
commented
Mar 20, 2026
Collaborator
@akronb is this what you mentioned on opentui as well and would this be fixed with opentui improvement? |
akronb
commented
Mar 20, 2026
ContributorAuthor
@kommander nope, that’s a different issue. It fixes visual bugs after The issue for the opentui thing is #13363. I checked it out, and it needs a small hook check to trigger a background re-render in the app root container. |
6 tasks
akronb
commented
Mar 24, 2026
ContributorAuthor
Fixed in |
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 freeto 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.
What does this PR do?
Fixes#12184
Fixes#13363
PR #8467 set
background: transparentfor the system theme to support terminal transparency. This caused rendering and contrast issues in parts of the UI, especially on light themes.This PR makes only the app background transparent, ensuring that all other uses of
theme.backgroundremain readable. It also adds acreateEffecthook withrenderer.setBackgroundColorto fix the alpha blending issue.