Strikethrough Color?

How do you change the strikethrough color used on the item text?

I’m using this, seems like it should work?

item[data-done] {
    color: fade(@text-color, 20%);
    > run[display] {
        text-strikethrough: NSUnderlineStyleSingle;
        text-strikethrough-color: fade(@text-color, 20%);
        color: fade(@text-color, 20%);
    }
    > run[tag] {
        text-strikethrough: NSUnderlineStyleSingle;
        text-strikethrough-color: fade(@text-color, 20%);
        color: fade(@text-color, 20%);
    }
    > run[lead] {
        color: fade(@text-color, 20%);
    }
}

Sorry display became content, then I think you’ll get the results that you want.

no problem. thank you!