Time Of Day automations - current time of day in list

I have a Time of Day sensor using the TOD platform.
I also have binary sensors for each time of day (DAY, MORNING, EVENING etc).
They’re all working well. But What I looking for is for a nice way with an automation to say.
Is the Current Time of day in MORNING, DAY or EVENING.

I know I could just add or conditions, but that makes for a fairly large automation.
Is there some sort of condition that would be the equivalent of

condition:
  entity_id: sensor.time_of_day
  in:
     - binary_sensor.DAY
     - binary_sensor.MORNING
     - binary_sensor.EVENING

Type thing

I think you are trying to ask “Can I have a condition that checks if the state of sensor.time_of_day is ‘Day’, ‘Morning’, or ‘Evening’?”
For that you just use a State condition:

conditon: state
entity_id: sensor.time_of_day
state:
  - Day
  - Morning
  - Evening

Cool that seems to work. Thanks.

A bit cleaner than multiple conditions.