Skip to content

Commit

Permalink
fix: add yellow color for text and icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jviide committed Apr 29, 2024
1 parent 44fa175 commit 6fff308
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/rich-gorillas-explain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@badrap/libapp": patch
---

Add yellow text & icon color
2 changes: 1 addition & 1 deletion src/ui/experimental/Icon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type IconProps = {
name: string;
filled?: boolean;
size?: Responsive<"xs" | "sm" | "md">;
color?: "base" | "gray" | "orange" | "red" | "green" | "blue";
color?: "base" | "gray" | "red" | "orange" | "yellow" | "green" | "blue";
};

export function Icon(props: IconProps): UiNode {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/experimental/Text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type TextProps = {
size?: Responsive<"xs" | "sm" | "md">;
align?: Responsive<"left" | "center" | "right">;
weight?: Responsive<"regular" | "medium" | "semibold">;
color?: "base" | "gray" | "orange" | "red" | "green" | "blue";
color?: "base" | "gray" | "red" | "orange" | "yellow" | "green" | "blue";
truncate?: boolean;
children?: UiNode;
};
Expand Down

0 comments on commit 6fff308

Please sign in to comment.