⚕️ systemTheme.ts

This commit is contained in:
nirholas
2026-03-31 10:24:31 +00:00
parent f7b9b2e991
commit c0857368e3

View File

@@ -117,3 +117,4 @@ function detectFromColorFgBg(): SystemTheme | undefined {
// 06 and 8 are dark ANSI colors; 7 (white) and 915 (bright) are light.
return bgNum <= 6 || bgNum === 8 ? 'dark' : 'light'
}