How to change ui-text background color?

If I make the CSS more targetable you could do this

by adding a style template like

<style>
    .nr-dashboard-widget-Test_text {
        background-color:red !important;
    }
</style>

(by using the label to help set the class...)

Any good ?