diff --git a/examples/to-do-example/src/app/components/ToDoRow.tsx b/examples/to-do-example/src/app/components/ToDoRow.tsx index aed1b2b1f..508ca519c 100644 --- a/examples/to-do-example/src/app/components/ToDoRow.tsx +++ b/examples/to-do-example/src/app/components/ToDoRow.tsx @@ -8,15 +8,15 @@ const baseStyle = const ToDoRowVariants = { add: { button: - "bg-slate-800 border-slate-500 border-2 hover:border-slate-400 pr-4 ", + "bg-slate-900 border-slate-600 border-2 hover:border-slate-400 pr-4 ", text: "text-slate-600 italic", icon: ( - + ), }, active: { button: "bg-slate-800", - text: "text-slate-200", + text: "text-slate-100", icon:
, }, completed: {