Change handle color when @done

I’d like to change the task handle color after marking a task done. Is this possible?

Yes, here is an example that customizes the various handle attributes for @done items:

item[data-done] {
  handle-size: 10;
  handle-color: red;
  handle-border-color: green;
  handle-border-width: 3;
}
1 Like