Hi Christine,
Basically in WinJS, all the control style are controlled by CSS, therefore change the CSS is OK.
The ListView background can be set by following CSS, you could see the blue background.


Sorry for the ugly color, but should be a workaround.
And as your requirement, when the field A is larger than 5000, then background should be green, you could use a if-else statement to generate a color, and the apply the color to the listview background.
document.getElementById("listview").style.background="blue";
Hope this helps,
--James
<THE CONTENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED>
Thanks
MSDN Community Support
Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.