almost-mono-themes
Almost monochromatic themes for emacs in a few variants (mirror)
rad:zpZF21X6v2si5ndNnqdEkHeFYVJ5
Visibility
public
Delegates
did:key:z6Mkg6hT6EeW4TcrP1oNS2RMZKhw9LCruEzzKtXwBs1hTJJf
Default branch
master → 6826f1b880bd91170dded26bb420dd4ef164f127 (Mon Feb 16 08:23:23 2026)
Threshold
1
README.md
> [!IMPORTANT]
> This project has moved to https://codeberg.org/cryon/almost-mono-themes

Almost mono themes
==================
[![MELPA](https://melpa.org/packages/almost-mono-themes-badge.svg)](https://melpa.org/#/almost-mono-themes)

A collection of almost monochrome emacs themes in a couple of variants.

![almost-mono-white](https://raw.githubusercontent.com/cryon/almost-mono-themes/master/readme-files/almost-mono-white.png)

![almost-mono-black](https://raw.githubusercontent.com/cryon/almost-mono-themes/master/readme-files/almost-mono-black.png)

Installation
============

Use package
-----------
If you have use-package setup on your system loading almost-mono-themes is as simple as:

```lisp
(use-package almost-mono-themes
  :config
  ;; (load-theme 'almost-mono-black t)
  ;; (load-theme 'almost-mono-gray t)
  ;; (load-theme 'almost-mono-cream t)
  (load-theme 'almost-mono-white t))
```

Manual installation
-------------------
If you prefer, you can install almost-mono-themes manually by downloading the elisp files in this repo and place them somewhere in your <code>load-path</code> and <code>custom-theme-load-path</code> (see example below).

You can set your paths by adding these lines to your <code>.emacs.d</code> or <code>.emacs.d/init.el</code>:

```lisp
;; Put the main theme file almost-mono-themes.el in your load path
(add-to-list 'load-path "~/.emacs.d/elisp")

;; Put the induvidual theme files almost-mono-{black, white, etc.}-theme.el in your theme load path
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
```

You should now be able to load almost-mono-themes with <code>M-x load-theme RET almost-mono-{black, white, etc.} RET</code>!