diff --git a/src/components/truth-table.tsx b/src/components/truth-table.tsx index ba49f01..c942731 100644 --- a/src/components/truth-table.tsx +++ b/src/components/truth-table.tsx @@ -26,7 +26,7 @@ const TruthTable: Component = ( { (exp) => (

{ exp }

@@ -37,11 +37,11 @@ const TruthTable: Component = ( { (row) => - + { (value) => + ${ value ? "bg-green-700" : "bg-red-700" }` }>

{ value ? "T" : "F" }

}