diff options
author | Michal Maršálek <MichalMarsalek@users.noreply.github.com> | 2023-08-01 20:56:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-01 20:56:38 +0200 |
commit | da368885da8850c0c87e6b9dcff64393985aff27 (patch) | |
tree | f3cf1ef64deaa6b64040861295863829ea02d302 | |
parent | 1d2c27d2e67149240f97de48f721d95539c543e4 (diff) | |
download | Nim-da368885da8850c0c87e6b9dcff64393985aff27.tar.gz |
Fix the position of "Grey" in colors.nim (#22358)
Update the position of "Grey"
-rw-r--r-- | lib/pure/colors.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/colors.nim b/lib/pure/colors.nim index b688fad54..685b68b36 100644 --- a/lib/pure/colors.nim +++ b/lib/pure/colors.nim @@ -200,8 +200,8 @@ const colGoldenRod* = Color(0xDAA520) colGray* = Color(0x808080) colGreen* = Color(0x008000) - colGrey* = Color(0x808080) colGreenYellow* = Color(0xADFF2F) + colGrey* = Color(0x808080) colHoneyDew* = Color(0xF0FFF0) colHotPink* = Color(0xFF69B4) colIndianRed* = Color(0xCD5C5C) @@ -350,8 +350,8 @@ const "goldenrod": colGoldenRod, "gray": colGray, "green": colGreen, - "grey": colGrey, "greenyellow": colGreenYellow, + "grey": colGrey, "honeydew": colHoneyDew, "hotpink": colHotPink, "indianred": colIndianRed, |