cls

An optional CSS class to apply to the main rendering element of the NumericTextBox.
The properties in this class will override any control and theme-specific properties.

<input id="numeric" />

<style>
    .pink { background-color:pink; }
</style>

<script type="text/javascript">
    $(function () {
        $("#numeric").shieldNumericTextBox({
            cls: "pink"
       });
    });
</script>