Skip to content

Commit

Permalink
changed green to toxic
Browse files Browse the repository at this point in the history
  • Loading branch information
D-K-P committed Jun 23, 2023
1 parent b812c6d commit 927eb1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/to-do-example/src/app/components/Cards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function AccordianTriggerContent({
{active ? (
<>
<div className="flex gap-1 items-center">
<CheckCircleIcon className="text-green-500 h-3 w-3" />
<CheckCircleIcon className="text-toxic-500 h-3 w-3" />
{contentVariants.activeBodyReactContent}
<Paragraph
variant="small"
Expand Down Expand Up @@ -191,7 +191,7 @@ export function TriggerSyncCard({
{active ? (
<>
<div className="flex gap-1 items-center">
<CheckCircleIcon className="text-green-500 h-3 w-3" />
<CheckCircleIcon className="text-toxic-500 h-3 w-3" />
syncVariant.activeBodyReactContent
<Paragraph
variant="small"
Expand Down
2 changes: 1 addition & 1 deletion examples/to-do-example/src/app/components/ToDoRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const ToDoRowVariants = {
},
completed: {
button: "bg-slate-900 text-slate-600",
icon: <CheckCircleIcon className="text-green-500 focus:bg-slate-800" />,
icon: <CheckCircleIcon className="text-toxic-500 focus:bg-slate-800" />,
},
};

Expand Down

0 comments on commit 927eb1d

Please sign in to comment.