blob: c41b5d64a916bbd984e44352827371fb7c9a01f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
* Pache Dark
[](http://melpa.org/#/pache-dark-theme)
A dark theme with high contrast. The colours are based on the gruvbox colour scheme by [[https://github.com/morhetz/gruvbox][morhetz]].
The code base is adapted from [[https://github.com/rexim/gruber-darker-theme][gruber-darker]] theme.
# Screenshot #
[[./screenshot-2.png]]
* Installation
** From source
Download the theme to your local directory. You can do it through `git
clone` command:
#+BEGIN_SRC bash
git clone https://github.com/0xhenrique/pache-dark-theme.git
#+END_SRC
Then add path to pache-dark-theme to custom-theme-load-path list —
add the following to your emacs config file somewhere (.emacs,
init.el, whatever):
#+BEGIN_SRC emacs-lisp
(add-to-list 'custom-theme-load-path
"/path/to/pache-dark-theme/")
(load-theme 'pache-dark :noconfirm)
#+END_SRC
** With package.el
You can install `pache-dark-theme` from [[https://melpa.org/#/pache-dark-theme][MELPA]]. You can just `M-x package-install RET pache-dark-theme` and then add the following to your Emacs' config:
#+BEGIN_SRC emacs-lisp
(load-theme 'pache-dark :noconfirm)
#+END_SRC
|