Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rexim/gruber-darker-theme
Gruber Darker color theme for Emacs 24+
https://github.com/rexim/gruber-darker-theme
Last synced: 22 days ago
JSON representation
Gruber Darker color theme for Emacs 24+
- Host: GitHub
- URL: https://github.com/rexim/gruber-darker-theme
- Owner: rexim
- Created: 2013-02-17T06:45:08.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-08-17T10:16:55.000Z (5 months ago)
- Last Synced: 2024-11-08T21:09:21.524Z (3 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 273 KB
- Stars: 257
- Watchers: 7
- Forks: 32
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![MELPA](http://melpa.org/packages/gruber-darker-theme-badge.svg)](http://melpa.org/#/gruber-darker-theme)
[![MELPA Stable](http://stable.melpa.org/packages/gruber-darker-theme-badge.svg)](http://stable.melpa.org/#/gruber-darker-theme)# Gruber Darker #
[Gruber Darker](http://jblevins.org/projects/emacs-color-themes/color-theme-gruber-darker.el.html)
color theme for Emacs by Jason Blevins. A darker variant of the
[Gruber Dark](http://daringfireball.net/projects/bbcolors/schemes/)
theme for BBEdit by John Gruber. Adapted for deftheme and extended by
Alexey Kutepov a.k.a. rexim.# Screenshot #
![gruber-darker-theme](http://i.imgur.com/8dY71hX.png)
# Installation #
You can use built-in package manager (package.el) or do everything by
your hands.## Using package manager ##
This theme is available on two repositories:
[MELPA](http://melpa.milkbox.net/) and
[Marmalade](http://marmalade-repo.org/). Add the following to your
emacs config file somewhere (.emacs, init.el, whatever)```
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
```for [MELPA](http://melpa.milkbox.net/), or
```
(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/") t)
```for [Marmalade](http://marmalade-repo.org/).
I personally prefer [MELPA](http://melpa.milkbox.net/), 'cause it
hourly updates its packages from upstream source.Then use `M-x package-install RET gruber-darker-theme RET` to install
the theme. Use `M-x customize-themes` to change your current theme.## Manual old fashioned way ##
Download the theme to your local directory. You can do it through `git
clone` command:```
git clone git://github.com/rexim/gruber-darker-theme.git
```Then add path to gruber-darker-theme to custom-theme-load-path list —
add the following to your emacs config file somewhere (.emacs,
init.el, whatever):```
(add-to-list 'custom-theme-load-path
"/path/to/gruber-darker-theme/")
```Use `M-x customize-themes` to change your current theme.
# Contribution #
Gruber Darker is an awesome theme. But it has a lack of support for
many good modes. I add color faces only for modes I use. If you like
this theme and use a mode that looks very bad with it, feel free to
add appropriate color faces (see file gruber-darker-theme.el) and send
me a pull request.Thanks.