Skip to content

Minimal monochromatic theme for Emacs in the spirit of Zmacs and Smalltalk-80.

License

Notifications You must be signed in to change notification settings

topikettunen/tok-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

MELPA

Minimal light monochromatic theme for Emacs in the spirit of Zmacs and Smalltalk-80. Simple syntax highlighting and minimal colouring for things such as diff/magit patches.

Screenshot of the theme

Installation

MELPA

(use-package tok-theme
  :config
  (load-theme 'tok t))

Local

You can also install this theme by copying it to your .emacs.d. I use themes directory for holding this so I can load it with:

(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/tok-theme")
(load-theme 'tok t)

Or with use-package:

(use-package tok-theme
  :load-path "themes/tok-theme"
  :config
  (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/tok-theme")
  (load-theme 'tok t))

Dark mode

If you want to use dark variant of theme, you can set tok-theme-dark to true before loading theme:

(setq tok-theme-dark t)
(load-theme 'tok)

Contributing

I like to keep my own .emacs.d relatively clean so there might be some "ugly" coloring in some of the modes, since I have most likely just missed that because I don't use it. If you happen to find some of these, feel free to drop a PR to clean it.

About

Minimal monochromatic theme for Emacs in the spirit of Zmacs and Smalltalk-80.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published