diff options
Diffstat (limited to 'src/result.go')
| -rw-r--r-- | src/result.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/result.go b/src/result.go index d6811dc8..4ba4bd2c 100644 --- a/src/result.go +++ b/src/result.go @@ -256,7 +256,7 @@ func (result *Result) colorOffsets(matchOffsets []Offset, nthOffsets []Offset, t base = base.WithAttr(attrNth) } if hidden { - base = base.WithFg(theme.Hidden) + base = base.WithFg(theme.Nomatch) } color := ansiToColorPair(ansi, base) colors = append(colors, colorOffset{ @@ -267,7 +267,7 @@ func (result *Result) colorOffsets(matchOffsets []Offset, nthOffsets []Offset, t } else { color := colBase.WithAttr(attrNth) if hidden { - color = color.WithFg(theme.Hidden) + color = color.WithFg(theme.Nomatch) } colors = append(colors, colorOffset{ offset: [2]int32{int32(start), int32(idx)}, |
