Skip to content

Commit

Permalink
Bun.color: match accepted outputFormat options to error (#14657)
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro authored Oct 19, 2024
1 parent bf8a75a commit 4f2d924
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/css/values/color_js.zig
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const css = bun.css;
const OutputColorFormat = enum {
ansi,
ansi_16,
ansi_256,
ansi_16m,
ansi_256,
css,
hex,
HEX,
Expand All @@ -39,7 +39,9 @@ const OutputColorFormat = enum {
.{ "{rgba}", .@"{rgba}" },
.{ "ansi_256", .ansi_256 },
.{ "ansi-256", .ansi_256 },
.{ "ansi_16", .ansi_16 },
.{ "ansi-16", .ansi_16 },
.{ "ansi_16m", .ansi_16m },
.{ "ansi-16m", .ansi_16m },
.{ "ansi-24bit", .ansi_16m },
.{ "ansi-truecolor", .ansi_16m },
Expand Down

0 comments on commit 4f2d924

Please sign in to comment.