• When posting, please be aware that artistic nudity is still nudity and not allowed under RpNation rules. Please edit your pictures accordingly!

    Remember to credit artists when using work not your own.

Help Different Colors

Meme Machine

*always screaming* DES PA CITO
Hi! So, I am brand new to BBcoding, and I have a fun code I’m trying to use (I’m not the creator of it, that honor goes to koala koala ) but I don’t know how to get different colors other than the preset ones. This may be a stupid question, but how do I find different Hex colors?
 
coolors.com has some nice palettes. You can select a palette with a color you like, click a certain color, and different shades of that color pop up too
 
color:#xxxxxx; - for text color, where xxxxxx is your RGB code.
background:#xxxxxx; - for backgroundcolor, where xxxxxx is your RGB code.

Example:

Code:
[class=text]
position:relative;
width:70%;
background:#252535;
margin-top:100px;
margin-bottom:100px;
padding:15px;
color:#fff;
text-align:justify;
[/class]

[class=text]
position:relative;
width:70%;
background:#252535;
margin-top:100px;
margin-bottom:100px;
padding:15px;
color:#fff;
text-align:justify;
[/class]

[div class=text]Gives you a box with a blueish-grey background and white text in it.[/div]
 
I use


for a variety of Hex color codes. You can even go and click on any hue and find various shades for it.
 

Users who are viewing this thread

Back
Top