Skip to content

Instantly share code, notes, and snippets.

@issm
Created November 23, 2013 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save issm/7611429 to your computer and use it in GitHub Desktop.
Save issm/7611429 to your computer and use it in GitHub Desktop.
textile-mode: for solarlized highlighting.
diff --git a/site-lisp/lang/textile-mode.el b/site-lisp/lang/textile-mode.el
index d794c09..cbf3a05 100644
--- a/site-lisp/lang/textile-mode.el
+++ b/site-lisp/lang/textile-mode.el
@@ -278,32 +278,32 @@ non-matching parentheses"
:group 'textile-faces)
(defface textile-blockquote-face
- '((t (:foreground "ivory4")))
+ '((t (:foreground "#93A1A1"))) ;; base0
"Face used to highlight bq blocks."
:group 'textile-faces)
(defface textile-footnote-face
- '((t (:foreground "orange red")))
+ '((t (:foreground "#CB4B16"))) ;; orange
"Face used to highlight footnote blocks."
:group 'textile-faces)
(defface textile-footnotemark-face
- '((t (:foreground "orange red")))
+ '((t (:foreground "#CB4B16"))) ;; orange
"Face used to highlight footnote marks."
:group 'textile-faces)
(defface textile-style-face
- '((t (:foreground "sandy brown")))
+ '((t (:foreground "#CB4B16"))) ;; orange
"Face used to highlight style parameters."
:group 'textile-faces)
(defface textile-class-face
- '((t (:foreground "yellow green")))
+ '((t (:foreground "#859900"))) ;; green
"Face used to highlight class and id parameters."
:group 'textile-faces)
(defface textile-lang-face
- '((t (:foreground "sky blue")))
+ '((t (:foreground "#268BD2"))) ;; blue
"Face used to highlight lang parameters."
:group 'textile-faces)
@@ -318,7 +318,7 @@ non-matching parentheses"
:group 'textile-faces)
(defface textile-code-face
- '((t (:foreground "ivory3")))
+ '((t (:foreground "#6C71C4"))) ;; violet
"Face used to highlight inline code."
:group 'textile-faces)
@@ -348,52 +348,52 @@ non-matching parentheses"
:group 'textile-faces)
(defface textile-span-face
- '((t (:foreground "pink")))
+ '((t (:foreground "#D33682"))) ;; magenta
"Face used to highlight span words."
:group 'textile-faces)
(defface textile-alignments-face
- '((t (:foreground "cyan")))
+ '((t (:foreground "#2AA198"))) ;; cyan
"Face used to highlight alignments."
:group 'textile-faces)
(defface textile-ol-bullet-face
- '((t (:foreground "red")))
+ '((t (:foreground "#DC322F"))) ;; red
"Face used to highlight ordered lists bullets."
:group 'textile-faces)
(defface textile-ul-bullet-face
- '((t (:foreground "blue")))
+ '((t (:foreground "#268BD2"))) ;; blue
"Face used to highlight unordered list bullets."
:group 'textile-faces)
(defface textile-pre-face
- '((t (:foreground "green")))
+ '((t (:foreground "#859900"))) ;; green
"Face used to highlight <pre> blocks."
:group 'textile-faces)
(defface textile-code-face
- '((t (:foreground "yellow")))
+ '((t (:foreground "#6C71C4"))) ;; violet
"Face used to highlight <code> blocks."
:group 'textile-faces)
(defface textile-table-face
- '((t (:foreground "red")))
+ '((t (:foreground "#DC322F"))) ;; red
"Face used to highlight tables."
:group 'textile-faces)
(defface textile-link-face
- '((t (:foreground "blue")))
+ '((t (:foreground "#268BD2"))) ;; blue
"Face used to highlight links."
:group 'textile-faces)
(defface textile-image-face
- '((t (:foreground "pink")))
+ '((t (:foreground "#D33682"))) ;; magenta
"Face used to highlight image links."
:group 'textile-faces)
(defface textile-acronym-face
- '((t (:foreground "cyan")))
+ '((t (:foreground "#2AA198"))) ;; cyan
"Face used to highlight acronyms links."
:group 'textile-faces)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment