https://github.com/myterminal/overcast-theme
A dark but vibrant color theme for Emacs
https://github.com/myterminal/overcast-theme
color-theme emacs
Last synced: 9 months ago
JSON representation
A dark but vibrant color theme for Emacs
- Host: GitHub
- URL: https://github.com/myterminal/overcast-theme
- Owner: myTerminal
- License: gpl-3.0
- Created: 2018-02-15T17:53:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-08-13T19:34:51.000Z (almost 4 years ago)
- Last Synced: 2025-03-28T20:12:28.343Z (over 1 year ago)
- Topics: color-theme, emacs
- Language: Emacs Lisp
- Homepage:
- Size: 1.65 MB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# overcast-theme
[](http://stable.melpa.org/#/overcast-theme)
[](http://melpa.org/#/overcast-theme)
[](https://marmalade-repo.org/packages/overcast-theme)
[](https://www.gnu.org/licenses/gpl.html)
[](https://ko-fi.com/Y8Y5E5GL7)
A dark but vibrant color theme for Emacs where almost everything except the code and the mode-line is muted so that the focus is entirely on buffer text. The mode-line for the active window is highlighted to make it more noticeable while moving back and forth between windows.

## Installation
### Manual
Save the file *overcast-theme.el* to disk and add the directory containing it to 'load-path' using a command in your '.emacs' file like:
(add-to-list 'load-path "~/.emacs.d/")
The above line assumes that you've placed the file into the Emacs directory '.emacs.d'.
Activate the package with:
(require 'overcast-theme)
### MELPA-Stable / MELPA / Marmalade
If you have MELPA-Stable, MELPA or Marmalade added as a repository to your Emacs, you can just install *overcast-theme* with
M-x package-install overcast-theme RET
## Usage
Enable the theme by
(load-theme 'overcast)
Alternatively, use
(load-theme 'overcast
t)
to avoid Emacs asking you for a confirmation before enabling the theme.
You might have to disable all themes that had been enabled earlier by
(mapcar 'disable-theme
custom-enabled-themes)
## Credits
Inspired by a template from [ThemeCreator](https://github.com/mswift42/themecreator).