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