com.alee.skin.dark.resources.panel.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weblaf-ui Show documentation
Show all versions of weblaf-ui Show documentation
WebLaf is a Java Swing Look and Feel and extended components library for cross-platform applications
<skin> <!-- com.alee.laf.panel.WebPanel --> <!-- Panel --> <style type="panel"> <component> <opaque>true</opaque> <background>68,68,68</background> </component> <painter /> </style> <!-- Transparent panel --> <style type="panel" id="transparent"> <component> <opaque>false</opaque> </component> </style> <!-- Completely white panel --> <style type="panel" id="white"> <component> <opaque>true</opaque> <background>white</background> </component> </style> <!-- Decorated panel --> <style type="panel" id="decorated"> <component> <opaque>false</opaque> </component> <painter> <decorations> <decoration> <WebShape round="2" /> <WebShadow type="outer" width="2" /> <LineBorder color="20,20,20" /> <ColorBackground color="77,81,83" /> </decoration> </decorations> </painter> </style> <!-- Decorated panel --> <style type="panel" id="focusable" extends="decorated"> <painter> <decorations> <decoration states="focused"> <LineBorder color="black" /> </decoration> </decorations> </painter> </style> </skin>