Last updated
Guidebook comes with 6 predefined themes, here you can find how to change them.
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 themes
Available themes: dark, light, green, red, purple, gold
Example: To choose green theme you would replace dark with green like this: <link rel="stylesheet" href="./css/dist/green.css">
First navigate to rcore_guidebook\client\html\css\dist
Then copy the dark.css theme and rename it to your liking
Example: If you want to make a new pink theme, you would copy dark.css and rename it to pink.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