Open Preferences and to to General, Advanced Settings. Scroll to the bottom, paste the link below and Install.
https://listed.to/p/vclyVIoc6P
If you are struggling to create your own theme then try these steps.
-
Find an existing theme you like and install it on desktop.
-
Open up the standards notes data directory
- Right click Standard Notes from Start Menu, go to More and click Open file location.
- Right click Standard Notes in the Explorer window that pops up and click Open file location.
- Now navigate up to AppData.
- Click into Roaming.
- Click into Standard Notes.
- Click into Extensions.
- Click into the theme you like.
- Click into dist.
-
Open dist.css and start tweaking it around. Each time you save changes, re-apply the theme in Standard Notes to see the effect.
-
Fork the repository of the same theme in Github to your personal account.
-
Rename the repository.
-
Click into dist folder and replace dist.css with your modified version.
-
Edit references to the repository name and version number (make a new version) in package.json and package-lock.json
-
Go over to releases in your repository and create a new release with the new version number.
-
Check out the Standard Notes documentation on publishing extensions.
Your .json file should look something like this:
--- metatype: json --- { "identifier": "your-domain-name.your-theme", "name": "Name of your theme", "content_type": "SN|Theme", "area": "themes", "description": "Short description of your theme.", "version": "v2.0.0", "url": "https://cdn.jsdelivr.net/gh/your-github-user-id/repository-name-of-your-theme@master/dist/dist.css", "download_url": "https://github.com/your-github-user-id/repository-name-of-your-theme/archive/2.0.0.zip", "marketing_url": "https://github.com/your-github-user-id/repository-name-of-your-theme", "latest_url": "Listed private link URL for this .json", "thumbnail_url": "https://raw.githubusercontent.com/your-github-user-id/repository-name-of-your-theme/master/screenshot-of-your-theme.png", "dock_icon": { "type": "circle", "background_color": "#D79921", "foreground_color": "#076678", "border_color": "#D79921" }, "statusBar": "dark-content" }