Jump to content

Coloring elements of notation: Difference between revisions

From LilyPond wiki
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Individual objects may be assigned colors. Several pre-defined colors are available; they are exhaustively listed in the Notation Reference.
Individual objects may be assigned colors. Several pre-defined colors are available; they are [https://lilypond.org/doc/v2.25/Documentation/notation/list-of-colors.html exhaustively listed] in the Notation Reference.


<lilypond version="2.24">
<lilypond version="2.24">
%% http://lsr.di.unimi.it/LSR/Item?id=419
\relative c'' {
\relative c'' {
   \override NoteHead.color = #red
   \override NoteHead.color = #red
Line 16: Line 14:
[[Category:Editorial annotations]]
[[Category:Editorial annotations]]
[[Category:Really simple]]
[[Category:Really simple]]
[[Category:Snippet]]

Latest revision as of 11:37, 7 April 2026

Individual objects may be assigned colors. Several pre-defined colors are available; they are exhaustively listed in the Notation Reference.

\version "2.24"

\relative c'' {
  \override NoteHead.color = #red
  c4 c
  \override NoteHead.color = #(x11-color 'LimeGreen)
  d
  \override Stem.color = #blue
  e
}