const json = @import("../json.zig"); pub const BackgroundFill = union(enum) { solid: struct { color: u24, }, gradient: struct { top_color: u24, bottom_color: u24, rotation_angle: u16, }, freeform_gradient: struct { colors: []const u24, }, pub const jsonParse = json.makeJsonParse(BackgroundFill); };