Whitesmoke Hex Color
#F5F5F5
(245, 245, 245)
Whitesmoke (or 0xF5F5F5), RGB value is (245, 245, 245). This html color code is also a web safe color which is equal to FFFFFF. Whitesmoke hex color red value is 245, green value is 245 and the blue value of its RGB is 245. Cylindrical-coordinate representations (also known as HSL) of color Whitesmoke hue: 0, saturation: 0 and the lightness value of Whitesmoke is 96.078431372549.
Color spaces of Whitesmoke
RGB | 245 | 245 | 245 |
---|---|---|---|
HSL | 0 | 0.00% | 96.08% |
HSV | 0° | 0° | 96° |
CMYK | 0.00 | 0.00 | 0.00 0.04 |
XYZ | 86.7900 | 91.3099 | 99.4364 |
Yxy | 91.3099 | 0.3127 | 0.3290 |
CIELCh | 96.5375 | 0.0113 | 296.8129 |
CIE-Lab | 96.5375 | 0.0051 | -0.0101 |
Base Numbers
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11110101 | 11110101 | 11110101 |
Octal | 365 | 365 | 365 |
Decimal | 245 | 245 | 245 |
Hex | F5 | F5 | F5 |
Analogous of Whitesmoke
These colors are all close to each other on a color wheel.
Triad of Whitesmoke
These colors are all equally distanced from each other on a color wheel, 2 of which have an alternate shade.
Tetrad of Whitesmoke
3 of these colors are all equally distanced from each other on a color wheel, plus 1 alternated shade for the base color and the 1 color that is opposite of the base color.
Weighted Tetrad of Whitesmoke
3 of these colors are all similarly distanced from each other on a color wheel, the base color has an alternate shade, and there is a weighted opposite color. These colors are all slightly closer to the base color than in a normal tetrad.
Compound of Whitesmoke
These colors use mathematical offsets that usually complement each other well, and can highlight the base color.
Whitesmoke CSS Color Codes
.mybgcolor {background-color:#F5F5F5; } .myforecolor {color:#F5F5F5; } .mybordercolor {border:3px solid #F5F5F5;}
Whitesmoke Text Font Color
<p style="color:#F5F5F5">Text here</p>
This sample text font color is #F5F5F5
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Whitesmoke Background Color
<div style="background-color:#F5F5F5">
Div content here</div>
This div background color is #F5F5F5
Whitesmoke Border Color
<div style="border:3px solid #F5F5F5">
Div here</div>
This div border color is #F5F5F5
Css3 Examples
.textShadowRgb { text-shadow: 4px 4px 2px rgba(245, 245, 245, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #F5F5F5}; } .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5F5F5; -webkit-box-shadow: 1px 1px 3px 2px #F5F5F5; box-shadow: 1px 1px 3px 2px #F5F5F5}; }
Text Shadow with RGB Values
<p style="text-shadow: 4px 4px 2px rgba(245, 245, 245, 0.8);">Text here</p>
This text has shadow with rgb values.
Text Shadow with Hex Values
<p style="text-shadow: 4px 4px 2px #F5F5F5">Text here</p>
This text has shadow with hex values.
Div Box Shadow
<div style="-moz-box-shadow: 1px 1px 3px 2px #F5F5F5; -webkit-box-shadow: 1px 1px 3px 2px #F5F5F5; box-shadow: 1px 1px 3px 2px #F5F5F5;">
Div content here</div>
This div box has shadow with color #F5F5F5