Good to hear!
In the default sty sheet I only have handle border color set when item has children, but if you just set it for all items then you’ll always see it. This should do it:
item {
handle-border-color: @handle-secondary-color;
}
This will color that leading dash orange, only for items tagged @done:
item[data-done] {
> run[link^="button"] {
color: orange;
}
}