Creating a new theme in Alfresco | Code Factory

Code Factory
1 min readDec 12, 2019

Reference Link : Link

Step 01 : Go to <Alfresco> -> tomcat -> webapps -> share -> themes.

Step 02 : Copy the contents of an existing theme directory to the new theme directory.
Example : greenTheme to codeFactoryTheme

Step 03 : Open following files :
- presentation.css
- yui/assets/skin.css

Step 04 : Search for .yui-skin-greenTheme and replace with .yui-skin-codeFactoryTheme (In both files).

Step 05 : Save the files.

Step 06 : Create a new XML file in the <Alfresco> -> tomcat -> webapps -> share -> web-inf -> classes -> alfresco -> site-data -> themes then copy greenTheme.xml and rename codeFactoryTheme.xml

Step 07 : Open the codeFactoryTheme.xml file, change all instances of greenTheme to codeFactoryTheme, and then save the files.

Step 08 : Restart Server.

Step 09 : Done.

--

--