Active

The active block applies while a component is being pressed or activated.

Button {
    text: "Delete"
    background: red-600
    color: white

    active {
        background: red-800
    }
}

It is commonly paired with hover to give buttons immediate press feedback.