This asset will help application to apply themes of their choice.
To apply themes in
primefaces you need to add a jar theme-all.jar(can be downloaded from
findjar.com)
Following entry
needs to added in web.xml
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>cupertino</param-value>
</context-param>
Following entry
need to be added in your layout page:
<link
type="text/css" rel="stylesheet"
href="#{request.contextPath}/themes/cupertino/skin.css"></link>