Update operand colors in FilterInput component for improved visual consistency

- Changed operand colors for various comparison symbols in the FilterInput component to enhance visual differentiation.
- Updated colors for symbols such as '..', '<>', '>=', '<=', and '=' to align with a more cohesive color scheme.
This commit is contained in:
Tom Butcher 2026-08-11 01:49:08 +01:00
parent fc2dbbd14d
commit 0723e8d73b

View File

@ -34,25 +34,25 @@ const OPERANDS = [
{
symbol: '..',
label: <ArrowLeftIcon style={operandIconStyle} />,
color: 'cyan'
color: 'blue'
},
{
symbol: '<>',
label: <NotEqualIcon style={operandIconStyle} />,
color: 'volcano'
color: 'magenta'
},
{
symbol: '>=',
label: <GreaterThanOrEqualToIcon style={operandIconStyle} />,
color: 'orange'
color: 'volcano'
},
{
symbol: '<=',
label: <LessThanOrEqualToIcon style={operandIconStyle} />,
color: 'orange'
color: 'volcano'
},
{ symbol: '|', label: 'OR', color: 'purple' },
{ symbol: '&', label: 'AND', color: 'purple' },
{ symbol: '|', label: 'OR', color: 'cyan' },
{ symbol: '&', label: 'AND', color: 'cyan' },
{
symbol: '>',
label: (
@ -68,7 +68,7 @@ const OPERANDS = [
{
symbol: '=',
label: <EqualIcon style={operandIconStyle} />,
color: 'blue'
color: 'green'
}
]