Hey @mafsi, I’m glad you like the theme!
As for adding in modifications, I see you’ve forked the repository on GitHub!
To compile the theme:
- You need
npm and NodeJS installed on your machine.
- Open a command prompt in the theme directory and run
npm install.
- Once this is complete, run
npm build to build the obsidian.css files.
For your modifications, I’d suggest the following workflow:
- Add a new
scss file in the src directory and import it into src/index.scss like the other imports at the bottom of the file.
- Add all your modifications in this new
scss file you’ve created.
These modifications should then be included in the compile the next time you run it. It also allows you to fetch upstream updates when they happen without dealing with merge conflicts. (I’m unsure how familiar you are with Git, but GitHub has some good documentation on working with a fork).
Feel free to DM me if you want more details or need help 