Is there a way to change the color of the dash with a tag?

When I tag an item with @today, I want the whole line (including the -) to be the same color:

Screenshot 2025-06-01 at 9.28.30 AM

My current less code is:

// Colors @today
item[data-today] {
color: rgb(255, 192, 0);
handle-color: rgb(255, 192, 0);
handle-border-color: rgb(255, 192, 0);
}

Yes, you can target that with run[lead]. Here’s an example that colors the leading syntax of items tagged with today as red:

item[data-today] {
  color: rgb(255, 192, 0);
}

item[data-today] {
  > run[lead] {
    color: rgb(255, 0, 0);
  }
}
1 Like

You are brilliant!

Thank you so much Jesse!

1 Like