From: hanwen Date: Sun, 19 Feb 2006 12:06:48 +0000 (+0000) Subject: (cyan): swap yellow and cyan. X-Git-Tag: release/2.7.38^2~102 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c1706b398d22886b0089e96bf1564a3684e8f59a;p=lilypond.git (cyan): swap yellow and cyan. --- diff --git a/ChangeLog b/ChangeLog index 34a45b14a0..d04e7cd6ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-02-19 Han-Wen Nienhuys + + * scm/output-lib.scm (cyan): swap yellow and cyan. + 2006-02-19 Graham Percival * darwin.patch: trivial linenumber update. diff --git a/scm/output-lib.scm b/scm/output-lib.scm index 1a7747e9e6..7f24ae3ddc 100644 --- a/scm/output-lib.scm +++ b/scm/output-lib.scm @@ -255,9 +255,9 @@ centered, X==1 is at the right, X == -1 is at the left." (define-public red '(1.0 0.0 0.0)) (define-public green '(0.0 1.0 0.0)) (define-public blue '(0.0 0.0 1.0)) -(define-public cyan '(1.0 1.0 0.0)) +(define-public cyan '(0.0 1.0 1.0)) (define-public magenta '(1.0 0.0 1.0)) -(define-public yellow '(0.0 1.0 1.0)) +(define-public yellow '(1.0 1.0 0.0)) (define-public grey '(0.5 0.5 0.5)) (define-public darkred '(0.5 0.0 0.0))