https://github.com/diasbruno/bw-theme
Monochromatic theme for emacs.
https://github.com/diasbruno/bw-theme
emacs emacs-theme
Last synced: about 2 months ago
JSON representation
Monochromatic theme for emacs.
- Host: GitHub
- URL: https://github.com/diasbruno/bw-theme
- Owner: diasbruno
- License: mit
- Created: 2017-04-10T05:16:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-12T03:46:49.000Z (about 8 years ago)
- Last Synced: 2025-04-01T19:59:19.852Z (about 2 months ago)
- Topics: emacs, emacs-theme
- Language: Emacs Lisp
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# monochromatic-theme
A simple monochromatic theme for emacs.
## install
### from source
Get `monochromatic-theme` and add to load paths with:
```emacs-lisp
(load-to-list 'load-path "/PATH/TO/monochromatic-theme")(load-theme 'monochromatic)
```### from melpa
To include `melpa` to your package archives.
```emacs-lisp
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
```Then simply download from `M-x package-list-packages RET` and include to your `.emacs`.
```emacs-lisp
(load-theme 'monochromatic)
```## usage
The default colours for the theme is bg "black" and fg "white".
You can change the colours by setting on your `custom-set-variables`.
```emacs-lisp
(custom-set-variables
'(monochromatic-foreground "white")
'(monochromatic-background "blue"))
```## license
See `license.md`.