Title color

You can combine ariehen’s answer together with the cssclasses property to specify different colors for different notes. For example, use the following CSS snippet to make to specify title colors by cssclasses: title-red or cssclasses: title-blue.

.title-red .inline-title {
    color: red; /* any CSS color you like */
    ... /* whatever else */
}

.title-blue .inline-title {
    color: blue;
    ...
}

1 Like