diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-09-06 15:46:30 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-09-06 15:46:30 -0400 |
commit | 51615bdb94d91fd0dad0e77620b05ddac6cd4162 (patch) | |
tree | ea39206962ace12e1b4d6e64ab11c6f2cd4c00cb | |
parent | 2d65655755d51353e516bbe7aace0669d1395d6c (diff) |
color: Add transparent color.
* sly/color.scm (transparent): New variable.
-rw-r--r-- | sly/color.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sly/color.scm b/sly/color.scm index 3384510..143e750 100644 --- a/sly/color.scm +++ b/sly/color.scm @@ -48,6 +48,7 @@ yellow magenta cyan + transparent tango-light-butter tango-butter tango-dark-butter @@ -179,6 +180,7 @@ is left unchanged." (define yellow (rgb #xffff00)) (define magenta (rgb #xff00ff)) (define cyan (rgb #x00ffff)) +(define transparent (make-color 0 0 0 0)) ;; Tango color pallete ;; http://tango.freedesktop.org |