Customizing BLAF for ADF Faces – easier than Skins for influencing colors and fonts
One fairly common remark on ADF Faces applications is their Look and Feel. The default look and feel is the Oracle BLAF, and either you love it or you hate it or so it seems. I get people hardly looking at the functionality of the application, the wild richness of the UI widgets and the flashy Ajax style partial page refresh but immediately starting to complain about those vague greenish/brownish/blueish/Oracle-ish colors. Another frequently heard comment is that a BLAF interface has so little useful real estate, as the BLAF components take up so much space. A typical Oracle BLAF User Interface would be something like the following:
Oracle has some excellent articles on the internet that describe how you can define your own custom look and feel through the use of Skins. So if you do not like Oracle BLAF – skins are your solution. Custom skins take the Simple look and feel as starting point, that custom skins extend from or override.
However, creating a custom Skin can be a quite elaborate task. The Oracle BLAF has quite a number of cool features – such as dynamic button generation, a well thought out set of icons in tree, tree-table and other complex components, etc. – that can be quite cumbersome to recreate in a custom skin . Besides, not all ADF Faces components can be customized using a custom Skin, for example the Tree component’s icons can not be set.
If all you want to customize in the ADF Faces look and feel are Fonts and Colors and you would like to benefit from all other Oracle BLAF features, you do not need to take the long road of creating a custom skin. This article demonstrates how you can easily achieve an Oracle BLAF based UI with your own color-scheme and font selection. With minimal effort, we turned the above application into this one:

The Oracle BLAF – or any other Skin such as Minimal or Simple or any Skin you create yourself – is configured in the WEB-INF\adf-faces-config.xml file:
<?xml version="1.0" encoding="windows-1252"?><br /><adf-faces-config xmlns="http://xmlns.oracle.com/adf/view/faces/config"><br /> <skin-family>oracle</skin-family><br /></adf-faces-config> <br />
If we want to change the Skin, this is where to do it. However, we want to modify the Oracle skin itself but still use it as a starting point, so the setting shown above should not be changed. It turns out that ADF Faces has separate render classes for the three major skins – Minimal, Simple and Oracle. To benefit from for example the icons in the tree-component, we have no choice but to leverage the Oracle skin as only the render-classes associated with the that skin render these icons. I was surprised to find out how large distinction between the three skins is in terms of code. I naively had expected each Skin to basically consist of a set of configurations, icons and a stylesheet. But apparently there are many specific classes tied in with each specific core Skin. Note that any custom skin builds from Simple and therefore automatically leverages the "code fork" for Simple.
The Oracle skin can be configured to a certain extent from the file oracle-desktop.xss. This file can be found in the jar adf-faces-impl.jar.
The first step to customizing the Oracle skin is extracting oracle-desktop.xss from the jar-file. Save this file in a directory called WEB-INF\lib\META-INF\adf\styles, like this:

Now when you run your ADF Faces application, it will use this file to dynamically generate a CSS, at runtime. In this file, we can specify colors and fonts, thereby influencing the Oracle BLAF. Here is a fragment from the oracle-desktop.xss that we customized in order to give our application an AMIS look and feel:
Note: when you rerun the application, you should Clear the Browser Cache, as it is likely to retain the old CSS file based on the original Oracle BLAF configuration!
<p><?xml version="1.0"?><br /><br /><!-- <br /> The oracle-desktop.xss style sheet defines the styles that are <br /> specific to the desktop implementation of the Oracle Browser<br /> Skin. The styles defined here are automatically layered<br /> on top of the styles defined by simple-desktop.xss. As such, this<br /> style sheet should only contain new BLAF-specific styles that are not <br /> defined by base-desktop.xss, or BLAF-specific overrides of styles<br /> that are defined by base-desktop.xss.<br />--><br /><br /><styleSheetDocument xmlns="http://xmlns.oracle.com/uix/style"<br /> version="2.0"><br /><br /><!-- The base style sheet for the Browser Look And Feel --><br /><styleSheet><br /><br /> <!-- <br /> Global Color Styles: oracle-desktop inherits most of the named<br /> color styles from base-desktop, but needs to override some of<br /> the styles to change the color ramps from green/grey to blue/tan.<br /> --><br /><br /> <!-- Change core color ramp to red --><br /> <style name="AFDarkBackground"><br /> <property name="background-color">#aa273d</property><br /> </style><br /><br /> <!-- Change the accent color ramp to yellow --><br /> <style name="AFDarkAccentBackground"><br /> <property name="background-color">#ffcc00</property><br /> </style><br /><br /> <!-- Change the extra accent color ramp to black --><br /> <style name="AFDarkExtraAccentBackground"><br /> <property name="background-color">#000000</property><br /> </style><br /><br /> <style name="AFMediumAccentBackground"><br /> <includeStyle name="AFDarkAccentBackground"/><br /> <property name="background-color">#fedb4d</property><br /> </style><br /><br /> <!-- Change the light accent offset. base-desktop uses<br /> "+#1D1C1C", we want "+#251f37". (2b2b4e was when the <br /> darkAccent was cccc99.) The absolute color we want is f7f7e7--><br /> <style name="AFLightAccentBackground"> <br /> <includeStyle name="AFDarkAccentBackground"/><br /> <property name="background-color">#feea9b</property><br /> </style><br />.... <br /></p>
Hello
How can I edit this file to change the icon of component?
url(/skins/mycompany/skin_images/panelBoxTopBackgroundLight.png)
1px
15px
for example the above code did not work