For Nexaweb Java applications, double click on the default stylesheet file
in the project's WebContent directory and Studio opens it in the Nexaweb Stylesheet Editor similar to Figure 16.
Figure 16: The Stylesheet Editor General tab.
The following shows an example of the contents of a stylesheet.xss file:
<styleSheet>
<defs>
<linearGradient id="gradient_01" y2="100%">
<stop offset="10%" stop-color="#000000"/>
<stop offset="90%" stop-color="#00C080"/>
</linearGradient>
</defs>
<style applyTo="button">
<normal bgColor="green"/>
</style>
<style applyTo="label" borderCorner="50">
<normal bgColor="green"/>
</style>
<style applyTo="textField">
<normal bgColor="green" fontColor="red" borderWidth="10" borderCorner="10"/>
</style>
<style applyTo=".myTab">
<normal borderCorner="10,0,10,0"/>
</style>
<style applyTo="menu,.menuBarItem,menuItem">
<normal bgColor="red" alignHorizontal="left"/>
</style>
</styleSheet>