]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/editorial/coloring-objects.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into kainhofer
[lilypond.git] / input / lsr / editorial / coloring-objects.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.35"
3
4 \header { texidoc = "
5 LilyPond gives you the ability to assign different colors to any grob
6 in your score, such as NoteHeads, Alterations, Beams and so on, by
7 simply overriding the #'color property and choosing your color (over
8 200 colors are available, see the \"List of Colors\" Appendix in the
9 Manual).
10 " }
11
12 \relative {
13   \override Accidental #'color = #darkgreen
14   \override Beam #'color = #cyan
15   \override NoteHead #'color = #darkyellow
16   c4
17   \override NoteHead #'color = #red
18   f
19   \override NoteHead #'color = #darkmagenta
20   g
21   \override NoteHead #'color = #darkblue
22   b
23   \override NoteHead #'color = #green
24   \override Stem #'color = #blue
25   e8 es d dis e4 r
26 }