mirror of
https://github.com/charmbracelet/glow.git
synced 2026-08-23 00:24:17 +02:00
Fix status bar colors on light backgrouds
This commit is contained in:
parent
9bc86c1944
commit
6e13ce3968
1 changed files with 4 additions and 3 deletions
7
ui/ui.go
7
ui/ui.go
|
|
@ -22,8 +22,9 @@ const (
|
|||
)
|
||||
|
||||
var (
|
||||
statusBarBg = common.NewColorPair("#242424", "#F4F0F4")
|
||||
statusBarFg = common.NewColorPair("#5A5A5A", "")
|
||||
glowLogoTextColor = common.Color("#ECFD65")
|
||||
statusBarBg = common.NewColorPair("#242424", "#E6E6E6")
|
||||
statusBarFg = common.NewColorPair("#5A5A5A", "#949494")
|
||||
)
|
||||
|
||||
// NewProgram returns a new Boba program
|
||||
|
|
@ -263,7 +264,7 @@ func statusBarView(m model) string {
|
|||
logoText := " Glow "
|
||||
logo := te.String(logoText).
|
||||
Bold().
|
||||
Foreground(common.YellowGreen.Color()).
|
||||
Foreground(glowLogoTextColor).
|
||||
Background(common.Fuschia.Color()).
|
||||
String()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue