mpasko256
0
Q:

css color codes

<!-- Color in HTML by inline-css -->
<p style="color: red; background-color: blue;">
  This text is red and the background is blue
</p>
22
/* CSS color codes work in format like HTML (rgb, color codes[#123456])*/

/* So here is a way to use this! */

<style>
	/* you can use any piece of the code for this */
	.example{
		color: #ABCDEF;
	}
	.example2{
		color: rgb(50, 50, 50);
	}
</style>

/* so yeah, upvote this answer if this helped! */
2
# HEX COLOR CODES
Format: #rrggbb
example: #abcdef

# How to decode?
F -- Full/Max value.
0 -- Off/Min value.

Color codes can range from #000000 (black) to #ffffff (white)
...or anything in between, #5a8d33 (Cactus green)

# Where can you easily find/create one?
Google has an built in HEX color picker
https://www.google.com/search?q=color+picker
W3Schools has a color code finder
https://www.w3schools.com/colors/colors_picker.asp
3
Use htmlcolorcodes.com for this
4
well here is a site that can teach u about color , hope u enjoy it.....

http://net-informations.com/q/web/color-codes.html
0

New to Communities?

Join the community