diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | src/guile/skribilo/color.scm | 3 |
2 files changed, 15 insertions, 1 deletions
@@ -2,6 +2,19 @@ # arch-tag: automatic-ChangeLog--lcourtes@laas.fr--2005-mobile/skribilo--devel--1.2 # +2006-10-16 21:09:47 GMT Ludovic Courtes <ludovic.courtes@laas.fr> patch-79 + + Summary: + color.scm: Added support for `lightred'. :-) + Revision: + skribilo--devel--1.2--patch-79 + + * src/guile/skribilo/color.scm (*skribe-rgb-alist*): Added `lightred'. + + modified files: + ChangeLog src/guile/skribilo/color.scm + + 2006-09-04 09:15:58 GMT Ludovic Courtes <ludovic.courtes@laas.fr> patch-74 Summary: diff --git a/src/guile/skribilo/color.scm b/src/guile/skribilo/color.scm index 8b6205f..6b3aa7b 100644 --- a/src/guile/skribilo/color.scm +++ b/src/guile/skribilo/color.scm @@ -571,7 +571,8 @@ ("darkcyan" . "0 139 139") ("darkmagenta" . "139 0 139") ("darkred" . "139 0 0") - ("lightgreen" . "144 238 144"))) + ("lightgreen" . "144 238 144") + ("lightred" . "255 127 127"))) (define (%convert-color str) |