Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Databingo committed Sep 7, 2023
1 parent 7ec4d5c commit af68dd2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions else/thought.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ check chatGPT verify mask? Difficult
color setting of vi for symbols (now is black can't see in black background)
restart for faulse AI model?
//escapt %v out of %!s(MISSING): on webpage Done
// add Falcon Done
9 changes: 6 additions & 3 deletions ryy/styles.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@ func style(name string) tcell.Style {
}
if name == "special" {
return tcell.StyleDefault.
Foreground(tcell.Color(0))
//Foreground(tcell.Color(0))
Foreground(tcell.Color(2))
}
if name == "text.string" {
return tcell.StyleDefault.
Foreground(tcell.ColorNavy)
}
if name == "text.number" {
return tcell.StyleDefault.
Foreground(tcell.ColorOlive)
//Foreground(tcell.ColorOlive)
Foreground(tcell.Color(2))
}
if name == "text.comment" {
return tcell.StyleDefault.
Expand All @@ -54,7 +56,8 @@ func style(name string) tcell.Style {
}
if name == "text.special" {
return tcell.StyleDefault.
Foreground(tcell.Color(6))
//Foreground(tcell.Color(6))
Foreground(tcell.Color(2))
}
if name == "cursor" {
return tcell.StyleDefault.Reverse(true)
Expand Down

0 comments on commit af68dd2

Please sign in to comment.