@@ -21,7 +21,7 @@ export function ColumnFilter<TData>({
2121
2222 return (
2323 < select
24- className = "mt-2 w-full bg-stellar-card border border-stellar-border rounded px-2 py-1 text-xs text-stellar-text-primary "
24+ className = "mt-2 w-full bg-stellar-dark border border-stellar-border rounded px-2 py-1 text-xs text-white "
2525 value = { v === "" ? "" : v ? "true" : "false" }
2626 onChange = { ( e ) => {
2727 const next = e . target . value ;
@@ -41,7 +41,7 @@ export function ColumnFilter<TData>({
4141
4242 return (
4343 < select
44- className = "mt-2 w-full bg-stellar-card border border-stellar-border rounded px-2 py-1 text-xs text-stellar-text-primary "
44+ className = "mt-2 w-full bg-stellar-dark border border-stellar-border rounded px-2 py-1 text-xs text-white "
4545 value = { v }
4646 onChange = { ( e ) => {
4747 const next = e . target . value ;
@@ -65,7 +65,7 @@ export function ColumnFilter<TData>({
6565 return (
6666 < div className = "mt-2 flex items-center gap-2" >
6767 < input
68- className = "w-full bg-stellar-card border border-stellar-border rounded px-2 py-1 text-xs text-stellar-text-primary "
68+ className = "w-full bg-stellar-dark border border-stellar-border rounded px-2 py-1 text-xs text-white "
6969 placeholder = "Min"
7070 inputMode = "decimal"
7171 value = { typeof min === "number" ? String ( min ) : "" }
@@ -79,7 +79,7 @@ export function ColumnFilter<TData>({
7979 } }
8080 />
8181 < input
82- className = "w-full bg-stellar-card border border-stellar-border rounded px-2 py-1 text-xs text-stellar-text-primary "
82+ className = "w-full bg-stellar-dark border border-stellar-border rounded px-2 py-1 text-xs text-white "
8383 placeholder = "Max"
8484 inputMode = "decimal"
8585 value = { typeof max === "number" ? String ( max ) : "" }
@@ -104,7 +104,7 @@ export function ColumnFilter<TData>({
104104 < div className = "mt-2 flex items-center gap-2" >
105105 < input
106106 type = "date"
107- className = "w-full bg-stellar-card border border-stellar-border rounded px-2 py-1 text-xs text-stellar-text-primary "
107+ className = "w-full bg-stellar-dark border border-stellar-border rounded px-2 py-1 text-xs text-white "
108108 value = { typeof from === "string" ? from : "" }
109109 onChange = { ( e ) => {
110110 const next : [ string | undefined , string | undefined ] = [
@@ -116,7 +116,7 @@ export function ColumnFilter<TData>({
116116 />
117117 < input
118118 type = "date"
119- className = "w-full bg-stellar-card border border-stellar-border rounded px-2 py-1 text-xs text-stellar-text-primary "
119+ className = "w-full bg-stellar-dark border border-stellar-border rounded px-2 py-1 text-xs text-white "
120120 value = { typeof to === "string" ? to : "" }
121121 onChange = { ( e ) => {
122122 const next : [ string | undefined , string | undefined ] = [
@@ -134,7 +134,7 @@ export function ColumnFilter<TData>({
134134
135135 return (
136136 < input
137- className = "mt-2 w-full bg-stellar-card border border-stellar-border rounded px-2 py-1 text-xs text-stellar-text-primary "
137+ className = "mt-2 w-full bg-stellar-dark border border-stellar-border rounded px-2 py-1 text-xs text-white "
138138 placeholder = "Filter…"
139139 value = { text }
140140 onChange = { ( e ) => column . setFilterValue ( e . target . value ) }
0 commit comments