branch: elpa/monokai-theme
commit b195af217e152b6bed8676f4786e662ddbff7455
Author: Kelvin Smith <[email protected]>
Commit: Kelvin Smith <[email protected]>
Use terminal friendly contrast colours
---
monokai-theme.el | 74 ++++++++++++++++++++++++++++----------------------------
1 file changed, 37 insertions(+), 37 deletions(-)
diff --git a/monokai-theme.el b/monokai-theme.el
index 6d4fa41..a955edc 100644
--- a/monokai-theme.el
+++ b/monokai-theme.el
@@ -36,6 +36,9 @@
;; Color Scheme Designer 3 for complementary colours.
;; - http://colorschemedesigner.com/
;;
+;; Xterm 256 Color Chart
+;; - https://upload.wikimedia.org/wikipedia/en/1/15/Xterm_256color_chart.svg
+;;
;; K. Adam Christensen for his personal monokai theme that addresses 256
colours.
;; - https://github.com/pope/personal/blob/master/etc/emacs.d/monokai-theme.el
;;
@@ -183,27 +186,24 @@ Also affects 'linum-mode' background."
(terminal-green "#87D700")
(terminal-gray "#444444")
;; Darker and lighter accented colors
- ;;
- ;; TODO: find terminal equivalents for all window colors (on the right)
- ;;
- (terminal-yellow-d "#968B26")
- (terminal-yellow-l "#FFF68F")
- (terminal-orange-d "#A0522D")
- (terminal-orange-l "#FFA54F")
- (terminal-red-d "#5F0000")
- (terminal-red-l "#EE6AA7")
- (terminal-magenta-d "#A41F99")
- (terminal-magenta-l "#FE87F4")
- (terminal-violet-d "#562AA6")
- (terminal-violet-l "#C2A1FF")
- (terminal-blue-d "#21889B")
- (terminal-blue-l "#8DE6F7")
- (terminal-cyan-d "#349B8D")
- (terminal-cyan-l "#AFEEEE")
- (terminal-green-d "#6B8E23")
- (terminal-green-l "#B3EE3A")
- (terminal-gray-d "#3a3a3a")
- (terminal-gray-l "#6c6c6c")
+ (terminal-yellow-d "#878700")
+ (terminal-yellow-l "#FFFF87")
+ (terminal-orange-d "#AF5F00")
+ (terminal-orange-l "#FFAF5F")
+ (terminal-red-d "#870000")
+ (terminal-red-l "#FF5F87")
+ (terminal-magenta-d "#AF0087")
+ (terminal-magenta-l "#FF87DF")
+ (terminal-violet-d "#5F00AF")
+ (terminal-violet-l "#AF87D7")
+ (terminal-blue-d "#008787")
+ (terminal-blue-l "#87D7FF")
+ (terminal-cyan-d "#5FAFAF")
+ (terminal-cyan-l "#AFFFFF")
+ (terminal-green-d "#5F8700")
+ (terminal-green-l "#AFD700")
+ (terminal-gray-d "#3A3A3A")
+ (terminal-gray-l "#6C6C6C")
;; Adaptive colors
(terminal-monokai-fg "#F5F5F5")
(terminal-monokai-bg "#1B1E1C")
@@ -215,22 +215,22 @@ Also affects 'linum-mode' background."
(terminal-monokai-fg-hc "#171A0B")
(terminal-monokai-fg-lc "#141414")
;; High contrast colors
- (terminal-yellow-hc yellow-d)
- (terminal-yellow-lc yellow-l)
- (terminal-orange-hc orange-d)
- (terminal-orange-lc orange-l)
- (terminal-red-hc red-d)
- (terminal-red-lc red-l)
- (terminal-magenta-hc magenta-d)
- (terminal-magenta-lc magenta-l)
- (terminal-violet-hc violet-d)
- (terminal-violet-lc violet-l)
- (terminal-blue-hc blue-d)
- (terminal-blue-lc blue-l)
- (terminal-cyan-hc cyan-d)
- (terminal-cyan-lc cyan-l)
- (terminal-green-hc green-d)
- (terminal-green-lc green-l)
+ (terminal-yellow-hc terminal-yellow-d)
+ (terminal-yellow-lc terminal-yellow-l)
+ (terminal-orange-hc terminal-orange-d)
+ (terminal-orange-lc terminal-orange-l)
+ (terminal-red-hc terminal-red-d)
+ (terminal-red-lc terminal-red-l)
+ (terminal-magenta-hc terminal-magenta-d)
+ (terminal-magenta-lc terminal-magenta-l)
+ (terminal-violet-hc terminal-violet-d)
+ (terminal-violet-lc terminal-violet-l)
+ (terminal-blue-hc terminal-blue-d)
+ (terminal-blue-lc terminal-blue-l)
+ (terminal-cyan-hc terminal-cyan-d)
+ (terminal-cyan-lc terminal-cyan-l)
+ (terminal-green-hc terminal-green-d)
+ (terminal-green-lc terminal-green-l)
;; customize based face properties
(terminal-s-variable-pitch (if monokai-use-variable-pitch
'variable-pitch 'default))