Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajgrf/parchment
A light editor theme for Vim and Emacs, inspired by Acme and Leuven – GitHub mirror
https://github.com/ajgrf/parchment
colorscheme emacs theme vim
Last synced: 4 days ago
JSON representation
A light editor theme for Vim and Emacs, inspired by Acme and Leuven – GitHub mirror
- Host: GitHub
- URL: https://github.com/ajgrf/parchment
- Owner: ajgrf
- License: other
- Created: 2017-10-17T23:02:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T05:38:08.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T13:16:38.351Z (3 months ago)
- Topics: colorscheme, emacs, theme, vim
- Language: Emacs Lisp
- Homepage: https://gitlab.com/ajgrf/parchment
- Size: 342 KB
- Stars: 95
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-acme - parchment - Editor theme for Vim and Emacs, inspired by Acme and Leuven (Inspired By / Themes)
- my-awesome-github-stars - ajgrf/parchment - A light editor theme for Vim and Emacs, inspired by Acme and Leuven – GitHub mirror (Emacs Lisp)
README
* Parchment
Parchment is an editor theme for Vim and Emacs, inspired by Acme and
Leuven. You might like it if you prefer light colorschemes but think
black-on-white is too hard on your eyes, or if you find most
colorschemes too busy.** Deprecation Notice
This theme is deprecated and will not be receiving further updates. The author
is no longer using vim, and has switched to [[https://protesilaos.com/emacs/modus-themes][modus-themes]].Alternative themes you may wish to migrate to include [[https://github.com/ianyepan/acme-emacs-theme][acme-theme]] for
Emacs users, or [[https://github.com/plan9-for-vimspace/acme-colors][acme-colors]] for Vim users.** Screenshots
[[./img/emacs-org.png]]
[[./img/vim-go.png]]
** Installation
*** Emacs
**** MELPA
After [[https://melpa.org/#/getting-started][enabling installation]] of MELPA
packages, install =parchment-theme= with ~M-x package-install~. Load
it using ~load-theme~.Or if you are using =use-package= (strongly recommended), simply add the
following to your =init.el=:#+BEGIN_SRC emacs-lisp
(use-package parchment-theme
:ensure t
:config (load-theme 'parchment t))
#+END_SRC**** Manual
To install =parchment-theme= for Emacs manually instead, first clone the
repository to your local system:#+BEGIN_SRC sh
mkdir -p ~/.emacs.d/themes
git clone https://gitlab.com/ajgrf/parchment ~/.emacs.d/themes/parchment
#+END_SRCThen add the following to your =init.el= or =.emacs= file:
#+BEGIN_SRC emacs-lisp
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
(load-theme 'parchment t)
#+END_SRC*** Vim
Parchment can be installed in the same way as most other vim plugins and
colorschemes. If you don't have a preferred method of installing vim plugins,
I recommend using [[https://github.com/tpope/vim-pathogen][pathogen]] to install parchment. Once pathogen is set up,
just clone this repo into your bundle directory:#+BEGIN_SRC sh
git clone https://gitlab.com/ajgrf/parchment ~/.vim/bundle/parchment
#+END_SRC** Terminal Colors
If your terminal does not support true colors, you will need to use a matching
terminal theme, and ensure that it does not use bright colors for bold text.
The following X resources accomplish that for xterm and urxvt:#+BEGIN_SRC conf-xdefaults
*background: #ffffea
*foreground: #000000*color0: #000000
*color1: #880000
*color2: #005500
*color3: #663311
*color4: #004488
*color5: #770077
*color6: #007777
*color7: #eeeecc
*color8: #eaeaea
*color9: #ffeaea
*color10: #eaffea
*color11: #eeee9e
*color12: #cceeff
*color13: #ffeaff
*color14: #eaffff
*color15: #ffffeaURxvt*intensityStyles: false
XTerm*boldColors: false
#+END_SRC** License
The files in this repository are licensed under a permissive ISC license. See
the LICENSE file for more details.