- A Triplet of themey goodness.
- Full colored gui and modern 256 color terminal support only.
Ample Theme is on Melpa, ensure that Melpa is added to your package archives, then use M-xpackage-installample-theme.
;; then in your init you can load all of the themes;; without enabling theme (or just load one)
(load-theme'amplett)
(load-theme'ample-flattt)
(load-theme'ample-lighttt)
;; choose one to enable
(enable-theme'ample)
;; (enable-theme 'ample-flat);; (enable-theme 'ample-light);; Or, if you use `use-package', do something like this:
(use-package ample-theme
:init (progn (load-theme'amplett)
(load-theme'ample-flattt)
(load-theme'ample-lighttt)
(enable-theme'ample-flat))
:defert:ensuret)You can use the following example to customize ample theme in a way that won’t affect other themes.
For example, some users prefer to use a different color for strings or the region for more contrast.
(with-eval-after-load"ample-theme";; add one of these blocks for each of the themes you want to customize
(custom-theme-set-faces'ample;; this will overwride the color of strings just for ample-theme
'(font-lock-string-face ((t (:foreground"#bdba81"))))))# throw this in your ~/.bash_profileexport TERM="xterm-256color"

