There are four ways you can modify text in SCP:Secret Lab:
- Bold: <b>text to be bolded</b>
- Italic: <i>text to be italicized</i>
- Size: <size=50>text to be size 50</size> | <size=10>text to be size 10</size>
- Color: <color=green>text to be green</color> | <color=#ff0000>text to be color#ff0000</color>
The color tag can be set to any hexadecimal color value, as well as a few colors built-in to Unity.
The size tag can be set to any number, but large ones can cause problems.
You can also combine them in any way you like:
- Bold and Italic <b><i>text to be bolded and italicized</i></b>
- Color and Bold <color=#fcaaaa><b>text to be coloured and bolded</b></color>
- Size and Italic <size=45><i>text to be sized and italicized</i></size>