Plasma
Not enough ratings
how to formatting?
By jm0739
my first guide. tells you about text formatting in plasma.
   
Award
Favorite
Favorited
Unfavorite
basic information
formatting allows you to change how text looks like.
screens, labels, workshop item descriptions and names(only in game) and more.
how to use formatting
to add formatting for specific part of a massage add <> before and after the part.(the second one isn't needed but it is used to define the end of the section, if you don't use it the rest of the massage will be modified)
inside you have to put text (specific values)to define how do you want to modify the text in between.
i have made a workshop item to show the formatting examples before
https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=3337718415
specific values
this section contains the values listed, if there are any more tell me in the comments and i add them.

type
example
how it looks
data needed
data description
additional info
bold
<b>example</b>
example
none
none
for labels, the text doesn't look much diffirent
italic
<i>example</i>
example
none
none
none
underline
<u>example</u>
example
none
none
none
strike
<s>example</s>
example
none
none
none
size
<size=X>example</size>
none
number
the number defines the size of text, replace letter X in example with the number
none
color
<color=X>example</color>
none
color
replace X with hex code(example: #ff0000 or #abcdef or #12345678 etc.)
if you want to change the opacity you can use hex codes with opacity
subscript
<sub>example</sub>
none
none
none
none
superscript
<sup>example</sup>
none
none
none
none
highlight
<mark=X>example</mark>
none
color
replace X with hex code(example: #ff000034 or #abcdef50 or #12345678 etc.)
if the opacity is too high (100,95 etc.) then you can't see the text
about colors
RGB COLOR
colors(RGB) can be displayed with numbers(example: 24,209,175 or 103,0,255)
the numbers define how much of each color is used (first number is how much Red second one how much Blue and third one how much Green is in the color) 0=none, 255=maximum.
fourth number can be added to specify opacity of the color. black is 00,00,00, white is 255,255,255

HEXADECIMAL

in hex each number is written in hexadecimal format
hexadecimal(or base 16 or HEX) is a format with 16 digits(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f)
so 10 in base 10(the numbers we usually use, the ones you learn is school in math) is a in base 16, b=11, c=12, d=13, e=14, f=15.
next is 1 0 whitch equals 16 in base 10
255 in base 16 is ff

HEX COLOR

to type color in hex you type hashtag (#) and put those numbers in HEX after it with no spaces inbetween(black is #000000, white is #ffffff, red is #ff0000, blue is #00ff00, purple is #ffff00)
if you want to specify opacity in hex you need to add two additional digits

green with 20 opacity is #0000ff14, 00(0) red+ 00(0) blue+ ff(255) green+ 14(20) opacity