Skip to content

Commit

Permalink
LibGfx: Fix cut off CSS color names
Browse files Browse the repository at this point in the history
  • Loading branch information
Lubrsi authored and awesomekling committed Sep 29, 2020
1 parent 709581e commit c0d9daa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Libraries/LibGfx/Color.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ Optional<Color> Color::from_string(const StringView& string)
{ 0xadd8e6, "lightblue" },
{ 0xf08080, "lightcoral" },
{ 0xe0ffff, "lightcyan" },
{ 0xfafad2, "lightgoldenrody" },
{ 0xfafad2, "lightgoldenrodyellow" },
{ 0xd3d3d3, "lightgray" },
{ 0x90ee90, "lightgreen" },
{ 0xd3d3d3, "lightgrey" },
Expand All @@ -293,13 +293,13 @@ Optional<Color> Color::from_string(const StringView& string)
{ 0x32cd32, "limegreen" },
{ 0xfaf0e6, "linen" },
{ 0xff00ff, "magenta" },
{ 0x66cdaa, "mediumaquamarin" },
{ 0x66cdaa, "mediumaquamarine" },
{ 0x0000cd, "mediumblue" },
{ 0xba55d3, "mediumorchid" },
{ 0x9370db, "mediumpurple" },
{ 0x3cb371, "mediumseagreen" },
{ 0x7b68ee, "mediumslateblue" },
{ 0x00fa9a, "mediumspringgre" },
{ 0x00fa9a, "mediumspringgreen" },
{ 0x48d1cc, "mediumturquoise" },
{ 0xc71585, "mediumvioletred" },
{ 0x191970, "midnightblue" },
Expand Down

0 comments on commit c0d9daa

Please sign in to comment.