Customize the look
Writerside builds a modern-looking web help with a fixed layout and dark mode support. The layout is adapted for a wide range of display sizes, from mobile devices to desktop monitors.
Writerside also provides some customization, such as the accent color, site logo, and favicon. You can customize the output in the build configuration file: /cfg/buildprofiles.xml in your help module root.
If you do not have this file yet, create it. Here is an example that you can use:
Change accent color
The accent color is applied to various UI components, such as the focused items in the TOC, active tabs, and buttons.
Open /cfg/buildprofiles.xml.
Use the
<primary-color>
element under<variables>
and choose from the following color palette:The default accent color is
frozen
, which has a Hex code #307FFF.
You should be able to see the configured color in the local preview.

Change header logo
The header logo is displayed in the header next to the help instance name. In most cases, it is the logo of your company, product, or project.
Put the logo image into the images directory in your project.
Open /cfg/buildprofiles.xml.
Use the
<header-logo>
element under<variables>
to specify the logo filename.<header-logo>my-logo.png</header-logo>If necessary, use the
<product-web-url>
element to add a URL that should open when your readers click the header logo. This is usually the home page of your help website, but you can also reference your company website or your project repository.<product-web-url>https://help.example.com</product-web-url>
Change favicon
Web browsers can display the favicon on tabs, in the address bar, browsing history, and bookmarks. Similar to the header logo, set the favicon to represent your company, product, or project.
By default, Writerside uses the JetBrains logo:
Put the favicon image into the images directory in your project or host it on some publicly accessible web server.
Open /cfg/buildprofiles.xml.
Use the
<custom-favicons>
element under<variables>
to specify the icons.Single local favicon:
<custom-favicons>favicon.png</custom-favicons>Single favicon as a URL:
<custom-favicons>https://www.jetbrains.com/icon.svg</custom-favicons>Multiple favicons ordered by size:
<custom-favicons>icon16.png,icon32.png,icon96.png,icon300.png,icon500.png</custom-favicons>