diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2018-02-07 02:49:08 +0000 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2018-02-07 22:14:00 +0100 |
commit | e209034536b11fbbba19f46a45f6afc316890a5d (patch) | |
tree | 99747aeecdea4c6a506e6b640924068878551ca5 /lisp/textmodes/css-mode.el | |
parent | 5fe81923e5b6dbbfb623befa12a3317a7e934a63 (diff) | |
download | emacs-e209034536b11fbbba19f46a45f6afc316890a5d.tar.gz |
Fix shr and CSS 4 color maps
* lisp/net/shr-color.el (shr-color-html-colors-alist): Fix typos.
Add RebeccaPurple.
* lisp/textmodes/css-mode.el (css--color-map): Add fuchsia-magenta
and aqua-cyan aliases.
* test/lisp/textmodes/css-mode-tests.el (css-test-property-values):
Bump color count.
Diffstat (limited to 'lisp/textmodes/css-mode.el')
-rw-r--r-- | lisp/textmodes/css-mode.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 922c1bfe13e..febf7c66139 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -498,6 +498,7 @@ further value candidates, since that list would be infinite.") ("red" . "#ff0000") ("purple" . "#800080") ("fuchsia" . "#ff00ff") + ("magenta" . "#ff00ff") ("green" . "#008000") ("lime" . "#00ff00") ("olive" . "#808000") @@ -506,6 +507,7 @@ further value candidates, since that list would be infinite.") ("blue" . "#0000ff") ("teal" . "#008080") ("aqua" . "#00ffff") + ("cyan" . "#00ffff") ("orange" . "#ffa500") ("aliceblue" . "#f0f8ff") ("antiquewhite" . "#faebd7") |