const SDL = @import("sdl2"); pub const yellow = SDL.Color{ .r = 232, .g = 216, .b = 165, .a = 255, }; pub const brown = SDL.Color{ .r = 180, .g = 130, .b = 90, .a = 255, }; pub const cyan = SDL.Color{ .r = 138, .g = 167, .b = 172, .a = 255, }; pub const orange = SDL.Color{ .r = 222, .g = 154, .b = 40, .a = 255, }; pub const blue = SDL.Color{ .r = 112, .g = 123, .b = 136, .a = 255, }; pub const green = SDL.Color{ .r = 142, .g = 146, .b = 87, .a = 255, }; pub const red = SDL.Color{ .r = 229, .g = 93, .b = 77, .a = 255, }; pub const purple = SDL.Color{ .r = 180, .g = 171, .b = 189, .a = 255, }; pub const pink = SDL.Color{ .r = 230, .g = 115, .b = 170, .a = 255, }; pub const dark_grey = SDL.Color{ .r = 40, .g = 40, .b = 40, .a = 255, }; pub const light_grey = SDL.Color{ .r = 80, .g = 80, .b = 80, .a = 255, };