Ability to change the color of individual words in a Lyric Track

Would it be possible to implement the ability to set the color for individual words within a Midi Lyrics clip?

Something like:

[Blue] I can feel it [yellow] coming in the air tonight

Thanks!

Hey @iamderkis, thank you for the request!

If you only need two extra colors apart from the line’s normal color, you can achieve it by using markdown for marking parts of your lines bold and italic, and then applying custom CSS to these parts to give them specific colors. Here’s how you can do it:

Markdown for Styling:

You can use markdown to make text bold or italic. For example:

  • **bold text** will render as bold text
  • *italic text* will render as italic text

Custom CSS for Colors:

You can then use custom CSS to apply colors to these styles. For example:

.lyrics strong {
  color: var(--color-blue-400);
  font-weight: normal;
}

.lyrics em {
  color: var(--color-yellow-400);
  font-style: normal;
}

Combining Both:

In your lyrics clip, you can write:

**I can feel it** *coming in the air tonight*

With the custom CSS applied, the first part will appear in blue and the 2nd part in yellow.

I hope this helps! :slight_smile:

1 Like

This is why I posted it here! I knew you would have a super simple solution! Thank you!!! That’s easier than putting the tags in the text!

1 Like