Theme Style

Learn how to change the default theme's stylesheet so you can change the website's appearance with ease.

Choosing the stylesheet

All the pre-built stylesheets are located withing the assets/css folder. Each one of the has a light version and a dark version. For the dark version some of the content might need some more help from you so it can be more readable. For this all you have to do is to apply the .c-white modifier class.

Go to the CSS folder and choose the one you need and replace the next line of code from the page's <head></head> section.

<!DOCTYPE html>
<html>
<head>
    <link id="stylesheet" type="text/css" href="/assets/css/boomerang-dark.min.css" rel="stylesheet" media="screen">
</head>
</html>