cancel
Showing results for 
Search instead for 
Did you mean: 

Coloured text in Sapscripts

Former Member
0 Kudos

Is it possible to print some text in red colour in sapscripts.Please help.

Regards,

Sam.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Sam,

Changing the colour of text is achieved by wrapping it in [color=][/color]. You can specify either a recognised colour name (eg. red, blue, yellow, etc.) or the hexadecimal triplet alternative, eg. #FFFFFF, #000000. For example, to create red text you could use:

[color=red]Hello![/color]

or

[color=#FF0000]Hello![/color]

will both output Hello!

Do reward points if helpful and close this thread.