Themes
Guidebook comes with 6 predefined themes, here you can find how to change them.
How to change a theme
First navigate to
rcore_guidebook\client\html\index.html
The instructions are at the top of the file, but let's break it down!
Find the line with
<link rel="stylesheet" href="./css/dist/dark.css">
There you can replace
dark
with one of the available themesAvailable themes:
dark, light, green, red, purple, gold
Example: To choose green theme you would replace
dark
withgreen
like this:<link rel="stylesheet" href="./css/dist/green.css">
How to make your own theme
First navigate to
rcore_guidebook\client\html\css\dist
Then copy the
dark.css
theme and rename it to your likingExample: If you want to make a new pink theme, you would copy
dark.css
and rename it topink.css
Open the new file and edit the colors inside
💡 You can use for example the google color picker to pick the colors
💡 These are the main colors in dark.css that you can "Find & Replace" in your editor.
primary: #1D2228.
background: #13181f.
accent: #ff9100.
text: #E1E2E2.
Change the new theme in index.html as described above and enjoy your new theme! ✨🎉
Last updated