TOPUseful TipsChanging Text Colour
最終更新日 : 2026/07/26

Changing Text Colour

The default editor does not allow you to change text colour. Although this is a workaround, you can change the colour as follows.

Setting text colour with HTML

Write the following in HTML.
<span class="" style="color: COLOR_CODE">text</span>

To enter HTML, click "View" in the editor, then click "Source code".

01_ソースコード.png

The source-code input screen opens. Enter the HTML.

For example, to make text red, enter:
<span class="" style="color: red">red</span>

02_Screen Shot 2026-06-15 at 10.41.54 AM.png

This makes the text red.

03_Screen Shot 2026-06-19 at 09.48.34 AM.png