Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisBRN committed Apr 2, 2019
1 parent 5cb54bf commit 6c148b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ Pantone colors names are copyright Pantone.

## Code Examples

SFML rgb: static const sf::Color cga_02(245,85,85); // FF555555
SFML hex: static const sf::Color cga_02(0x00555555); // (245,85,85)
Game Maker: col_cga_02 = make_color_rgb(245,85,85);
Unity: public Color cga_02 = Color(0.961F, 0.333F, 0.333F);
Godot: var col_cga_02 Color(0.961, 0.333, 0.333)
SFML rgb: static const sf::Color cga_02(245,85,85); // FF555555
SFML hex: static const sf::Color cga_02(0x00555555); // (245,85,85)
Game Maker: col_cga_02 = make_color_rgb(245,85,85);
Unity: public Color cga_02 = Color(0.961F, 0.333F, 0.333F);
Godot: var col_cga_02 Color(0.961, 0.333, 0.333)

## Notes

Expand Down

0 comments on commit 6c148b8

Please sign in to comment.