A monochrome color scheme for Obsidian, optimized for e-ink (or e-paper) screens.
No dark theme is included, because that would not make sense on e-ink.
Find this theme in the Obsidian's community themes browser under Settings > Appearance > Themes. If that doesn't work, double-check if you are running the latest version of Obsidian.
Make changes in the scss
files and compile theme.scss
into theme.css
using something like dart-sass:
sass theme.scss theme.css
Add --watch
if you want.
I use the .vscode/tasks.json
to compile with ctrl+shift+B in VSCodium.
A GitHub workflow runs to build a release when a tag is pushed to the repository, as described here. To trigger that:
- Update the version number (without a
v
) inmanifest.json
. - Create a tag (with
v
) with a message (withoutv
) that matches the version in themanifest.json
file and push it to GitHub:
git tag v0.1.1 --message=0.1.1
git push origin --tags
- Check the result on https://github.com/harmtemolder/obsidian-ink/releases and publish the draft release.