Disabled

The disabled block emits styles for a disabled control.

Button {
    text: "Submit"
    background: blue-600
    color: white

    disabled {
        cursor: not-allowed
        opacity: 50
    }
}

Use it to make unavailable controls visibly distinct while preserving their normal styling.