change some highlighting

This commit is contained in:
rhiannon morris 2023-02-26 11:18:11 +01:00
parent 60f07a938e
commit fbfbe57266

View file

@ -204,16 +204,16 @@ prettyStr unicode =
export
termHL : HL -> AnsiStyle
termHL Delim = color BrightBlack
termHL Delim = neutral
termHL TVar = color BrightYellow
termHL TVarErr = color BrightYellow <+> underline
termHL Dim = color BrightGreen <+> bold
termHL Dim = color BrightGreen
termHL DVar = color BrightGreen
termHL DVarErr = color BrightGreen <+> underline
termHL Qty = color BrightMagenta <+> bold
termHL Free = color BrightWhite
termHL Qty = color BrightMagenta
termHL Free = color BrightBlue
termHL Syntax = color BrightCyan
termHL Tag = color BrightBlue
termHL Tag = color BrightRed
export %inline
prettyTerm : PrettyOpts -> PrettyHL a => a -> IO Unit