Skip to content

Commit

Permalink
Change terminal colours to be more align with the scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
vrom911 authored and jonaprieto committed Jun 7, 2023
1 parent 4c2aa49 commit 2322a85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Juvix/Data/CodeAnn.hs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ stylize a = case a of
AnnJudoc -> colorDull Cyan
AnnDelimiter -> colorDull White
AnnLiteralString -> colorDull Red
AnnLiteralInteger -> colorDull Cyan
AnnLiteralInteger -> colorDull Green
AnnDef {} -> mempty
AnnRef {} -> mempty

Expand Down
4 changes: 2 additions & 2 deletions src/Juvix/Data/NameKind.hs
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ canBeIterator k = case getNameKind k of

nameKindAnsi :: NameKind -> AnsiStyle
nameKindAnsi k = case k of
KNameConstructor -> colorDull Magenta
KNameConstructor -> colorDull Blue
KNameInductive -> colorDull Green
KNameAxiom -> colorDull Red
KNameAxiom -> colorDull Magenta
KNameLocalModule -> color Cyan
KNameFunction -> colorDull Yellow
KNameLocal -> mempty
Expand Down

0 comments on commit 2322a85

Please sign in to comment.