How to make colored text in the forums
Confused how to make colored text in the forums because lack of color options? No, we're not lacking of color options in the forums because the forums allow you to make it. Here's how:
$$\red{I \space LOVE \space SKIBIDI \space TOLIET}$$
Results in:
$$\red{I\space LOVE \space SKIBIDI \space TOLIET}$$
We used the Math feature in Markdown so the text appears italic and serif. So, with the math feature, we could make some colored text, like the above.
You can replace red
with the following:
-
orange
-
green
-
blue
-
purple
-
pink
-
gray
$$\orange{your \space text \space here}$$
$$\green{your \space text \space here}$$
$$\blue{your \space text \space here}$$
$$\purple{your \space text \space here}$$
$$\pink{your \space text \space here}$$
$$\gray{your \space text \space here}$$
Which could be useful to make this!
$$\red{r}\orange{a}\green{i}\blue{n}\purple{b}\pink{o}\gray{w}$$
$$\red{r}\orange{a}\green{i}\blue{n}\purple{b}\pink{o}\gray{w}$$
Remember to use \space
when adding spaces, because it doesn't work properly if we don't use \space
. (Also, you can use \
, which is a \ with a space after it -- thanks @bh!)
Custom Colors
Custom colors work too! You can use \color
between the two $$
to make more colorful text! Example, $$\color{teal}$$
sets the color to teal, like:
$$\color{teal} Hello!$$
$$\color{teal} Hello!$$
Using hex works too, such as $$\color{decade}
like:
$$\color{decade} Ten \space The \space Skunk \space Boi$$
$$\color{decade} Ten \space The \space Skunk \space Boi$$
Remember to use \space
when adding spaces, because it doesn't work properly if we don't use \space
.
This post is a wiki, you can add some missing info.