https://github.com/netromdk/sn-theme-terminal-green
Old school terminal green theme for Standard Notes
https://github.com/netromdk/sn-theme-terminal-green
standardnotes standardnotes-theme theme
Last synced: 16 days ago
JSON representation
Old school terminal green theme for Standard Notes
- Host: GitHub
- URL: https://github.com/netromdk/sn-theme-terminal-green
- Owner: netromdk
- License: mit
- Created: 2026-06-11T12:39:34.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2026-06-11T13:25:18.000Z (about 1 month ago)
- Last Synced: 2026-06-11T15:13:54.360Z (about 1 month ago)
- Topics: standardnotes, standardnotes-theme, theme
- Language: SCSS
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terminal Green - Standard Notes theme
A black-and-green Standard Notes theme inspired by old-school phosphor CRT terminals.
## Color palette
| Role | Color | Hex |
|---|---|---|
| Background | Black | `#000000` |
| Panels / sidebars | Dark green-tinted black | `#0a150a` |
| Primary text | Phosphor green | `#00ff41` |
| Secondary text | Dimmer green | `#00aa29` |
| Borders | Dark green | `#004400` |
| Warning | Yellow chartreuse | `#ccff00` |
| Navigation selected | Dark mid-green | `#003a0e` |
| Danger | Red (kept for visibility) | `#ff3333` |
Tag and folder tint colors follow ANSI terminal conventions (cyan, magenta, chartreuse, purple,
green, and amber), so color-coded tags remain distinguishable against the black background.
## Installation
1. Open Standard Notes and go to **Preferences -> Plugins -> Install Custom Plugin**.
2. Paste the raw CSS URL and confirm:
```
https://cdn.jsdelivr.net/gh/netromdk/sn-theme-terminal-green@master/ext.json
```
After publishing a new release, purge the jsDelivr cache so the update checker
picks up the latest `ext.json`:
- https://purge.jsdelivr.net/gh/netromdk/sn-theme-terminal-green@master/ext.json
(The CSS is served from an immutable version tag and does not need purging.)
## Building from source
The source lives in `src/main.scss`. Compile it to `dist/dist.css` with:
```sh
./build.sh
```
The script requires `npm` (Node.js). On first run it installs `sass` locally into `node_modules/`
(no global install needed). Subsequent runs skip the install step.
To run the build step directly after `npm install`:
```sh
npm run build
```