refactor: unify colors for a tui. May change again not sure

This commit is contained in:
Slug-Boi
2024-11-12 22:38:20 +01:00
parent 49b471e188
commit bbc2e758e5
3 changed files with 9 additions and 6 deletions
+4 -1
View File
@@ -61,7 +61,10 @@ type model_cm struct {
func initialModel_cm() model_cm {
ti := textarea.New()
ti.FocusedStyle = textarea.Style{Base: lipgloss.NewStyle().Foreground(lipgloss.Color("170"))}
ti.FocusedStyle = textarea.Style{
Base: lipgloss.NewStyle().Foreground(lipgloss.Color("170")),
LineNumber: lipgloss.NewStyle().Foreground(lipgloss.Color("90")),
}
ti.SetWidth(80)
ti.SetHeight(8)