Skip to content

Commit 01ebbae

Browse files
authored
fix: Fixing indenter style (#6402)
1 parent 1a03e5b commit 01ebbae

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

internal/view/dag/dag.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func NewTreeStyler(shouldColor bool) *TreeStyler {
146146

147147
return &TreeStyler{
148148
shouldColor: shouldColor,
149-
entryStyle: lipgloss.NewStyle().Foreground(lipgloss.Color("240")).MarginRight(1),
149+
entryStyle: lipgloss.NewStyle().Foreground(lipgloss.Color("8")).MarginRight(1),
150150
rootStyle: lipgloss.NewStyle().Foreground(lipgloss.Color("35")),
151151
colorizer: colorizer,
152152
}
@@ -168,6 +168,7 @@ func (s *TreeStyler) Style(t *tree.Tree) *tree.Tree {
168168

169169
return t.
170170
EnumeratorStyle(s.entryStyle).
171+
IndenterStyle(s.entryStyle).
171172
RootStyle(s.rootStyle)
172173
}
173174

0 commit comments

Comments
 (0)