Skip to content

Commit

Permalink
Add game color palette
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanlangston committed Jan 5, 2024
1 parent 55a77e8 commit 3930168
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion src/Colors.zig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const raylib = @import("raylib");

pub const Colors = struct {
pub const DefaultColors = struct {
pub const Transparent = raylib.Color.blank;

pub const Tone = Color{
Expand Down Expand Up @@ -52,6 +52,29 @@ pub const Colors = struct {
};
};

pub const AKC12 = struct {
pub const Red = Color{
.Base = raylib.Color.init(194, 75, 110, 255),
.Dark = raylib.Color.init(167, 49, 105, 255),
.Light = raylib.Color.init(217, 98, 107, 255),
};
pub const Yellow = Color{
.Base = raylib.Color.init(255, 194, 122, 255),
.Dark = raylib.Color.init(236, 154, 109, 255),
.Light = raylib.Color.init(255, 235, 153, 255),
};
pub const Green = Color{
.Base = raylib.Color.init(106, 175, 157, 255),
.Dark = raylib.Color.init(53, 93, 104, 255),
.Light = raylib.Color.init(148, 197, 172, 255),
};
pub const Blue = Color{
.Base = raylib.Color.init(32, 20, 51, 255),
.Dark = raylib.Color.init(32, 17, 39, 255),
.Light = raylib.Color.init(27, 30, 52, 255),
};
};

pub const Color = struct {
Base: raylib.Color,
Dark: raylib.Color,
Expand Down

0 comments on commit 3930168

Please sign in to comment.