Fix the position of "Grey" in colors.nim (#22358)

Update the position of "Grey"

(cherry picked from commit da368885da)
This commit is contained in:
Michal Maršálek
2023-08-01 20:56:38 +02:00
committed by narimiran
parent d1db4c29fa
commit 1de6a7a023

View File

@@ -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,