HEX: #FFFFFF
RGB: (255,255,255)
Color name is White. #FFFFFF contains red, green and blue colors in about the same proportion. #FFFFFF color is web safe color. It maybe written shortly as #FFF.
#FFFFFF color RGB value is (255,255,255).
RGB: (255,255,255) (100%,100%,100%)
R 255 of 255 = 100%
G 255 of 255 = 100%
B 255 of 255 = 100%
R + G + B ~ 100%. #FFFFFF is light color.
R + G + B =
255 + 255 + 255 = 765 (100%)
R 255 of 765 ~ 33.33%
G 255 of 765 ~ 33.33%
B 255 of 765 ~ 33.33%
#FFFFFF color CMYK value is (0,0,0,0).
CMYK: (0,0,0,0) C0M0Y0K0 (0%,0%,0%,0%) (0.00/0.00/0.00/0.00)
FF | FF | FF | |
---|---|---|---|
RGB | 255 | 255 | 255 |
HSL | 0° | 0.00% | 1.00% |
HSB/HSV | 0° | 0.00% | 1.00% |
CMYK | 0.00% | 0.00% | 0.00% |
0.00% |
HEX | FF | FF | FF |
Decimal | 255 | 255 | 255 |
Binary | 11111111 | 11111111 | 11111111 |
Octal | 377 | 377 | 377 |
Examples of css and html codes for elements with #FFFFFF color. Also use rgb(255,255,255) instead hex code.
.myTextColor { color: #FFFFFF; }
<p style="color:#FFFFFF">This sample text font color is #FFFFFF.</p>
This text font color is #FFFFFF.
.myBgColor { background-color: #FFFFFF; }
<div style="background-color:#FFFFFF">Inner text</div>
This div background color is #FFFFFF.
.myBorderColor { border: 1px solid #FFFFFF; }
<div style="border:3px solid #FFFFFF">Div</div>
This div border color is #FFFFFF.
.myOpacity80 { color: #FFFFFF; opacity: 0.8; }
<p style="color:#FFFFFF;opacity:0.8;">80%</p>
Text with #FFFFFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFFFFF;}
<p style="text-shadow: 3px 3px 1px #FFFFFF">Text here.</p>
This text has shadow with #FFFFFF color.
.textShadow {text-shadow: 3px 3px 1px #FFFFFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFFFFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFFFFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFFFFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFFFFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFFFFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFFFFF; -webkit-box-shadow: 1px 1px 3px 2px #FFFFFF; box-shadow: 1px 1px 3px 2px #FFFFFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFFFFF; -webkit-box-shadow: 1px 1px 3px 2px #FFFFFF; box-shadow:1px 1px 3px 2px #FFFFFF;">
Div content here</div>
This text has color #FFFFFF on black background.
This text has color #FFFFFF on white background.
This text has black color on #FFFFFF background.
This text has white color on #FFFFFF background.