Correctly define Color.pink (#58)

This commit is contained in:
Not-Nik 2023-10-11 13:44:21 +02:00
parent b07ce8b343
commit b74f8d02bb
No known key found for this signature in database
GPG Key ID: 08BB71E672DB3BFD
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ pub const Color = extern struct {
pub const yellow = Color.init(253, 249, 0, 255);
pub const gold = Color.init(255, 203, 0, 255);
pub const orange = Color.init(255, 161, 0, 255);
pub const pink = Color.init(255, 161, 0, 255);
pub const pink = Color.init(255, 109, 194, 255);
pub const red = Color.init(230, 41, 55, 255);
pub const maroon = Color.init(190, 33, 55, 255);
pub const green = Color.init(0, 228, 48, 255);

View File

@ -67,7 +67,7 @@ pub const Color = extern struct {
pub const yellow = Color.init(253, 249, 0, 255);
pub const gold = Color.init(255, 203, 0, 255);
pub const orange = Color.init(255, 161, 0, 255);
pub const pink = Color.init(255, 161, 0, 255);
pub const pink = Color.init(255, 109, 194, 255);
pub const red = Color.init(230, 41, 55, 255);
pub const maroon = Color.init(190, 33, 55, 255);
pub const green = Color.init(0, 228, 48, 255);