[BBCODE] Rainbow BBCode

Mixed forum with phpBB code snippets
Guides and styles

[BBCODE] Rainbow BBCode

Post by Stoker »

Rainbow BBCode

The Rainbow BBCode let you use a bbcode that will add rainbow colours to the text.

Demo:
First part of this post.

BBCode:

Code: Select all

[rainbow]{TEXT}[/rainbow]
HTML:

Code: Select all

<span class="rainbow-text">{TEXT}</span>
Helpline:

Code: Select all

Rainbow text: [rainbow]your text here...[/rainbow]
Example:

Code: Select all

[rainbow]Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/rainbow]
Now, to make this work we need some css.
You can add it to the bottom of your styles colours.css

Code: Select all

.rainbow-text {
  background-image: linear-gradient(270deg, violet, indigo, blue, green, yellow, orange, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Save, upload and refresh

Need a stylesheet for adding extra styling? No need to edit phpBB core!
You can use the Add CSS EXT
PSST! This one is already there ;)
Last edited by Stoker on 20 Apr 2025, 19:14, edited 1 time in total.

[BBCODE] Rainbow BBCode

Post by SpIdErPiGgY »

[rainbow]{TEXT}[/rainbow]] should be [rainbow]{TEXT}[/rainbow]
And Rainbow tezt = Rainbow text

[BBCODE] Rainbow BBCode

Post by Stoker »

Thanks 👍