tui: Update conversation list category heading colour
This commit is contained in:
parent
69d3265b64
commit
b06e031ee0
@ -209,7 +209,7 @@ func (m *conversationsModel) renderConversationList() string {
|
||||
|
||||
categoryStyle := lipgloss.NewStyle().
|
||||
MarginBottom(1).
|
||||
Foreground(lipgloss.Color("170")).
|
||||
Foreground(lipgloss.Color("12")).
|
||||
PaddingLeft(1).
|
||||
Bold(true)
|
||||
|
||||
@ -248,7 +248,6 @@ func (m *conversationsModel) renderConversationList() string {
|
||||
}
|
||||
|
||||
tStyle := titleStyle.Copy()
|
||||
padding := " "
|
||||
if c.conv.Title == "" {
|
||||
tStyle = tStyle.Inherit(untitledStyle).SetString("(untitled)")
|
||||
}
|
||||
@ -263,9 +262,9 @@ func (m *conversationsModel) renderConversationList() string {
|
||||
|
||||
m.itemOffsets[i] = currentOffset
|
||||
item := itemStyle.Render(fmt.Sprintf(
|
||||
"%s\n%s",
|
||||
"%s\n %s",
|
||||
title,
|
||||
padding+ageStyle.Render(util.HumanTimeElapsedSince(lastReplyAge)),
|
||||
ageStyle.Render(util.HumanTimeElapsedSince(lastReplyAge)),
|
||||
))
|
||||
sb.WriteString(item)
|
||||
currentOffset += height(item)
|
||||
|
Loading…
Reference in New Issue
Block a user