#FFF5EE color RGB value is (15, 255, 94).
#FFF5EE hex color red value is 15, green value is 255, and blue value is 94.
Cylindrical-coordinate representations (HSL) of color #FFF5EE
hue: 139.75,
saturation: 1 and lightness: 0.53.
The process color (four-color CMYK) of #FFF5EE color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #FFF5EE is #ff9999. Color #FFF5EE contains mainly RED.
Color spaces of #FFF5EE | Value |
---|---|
RGB | 255, 245, 238 |
HSL | 0.07, 1, 0.97 |
HSV | 25°, 7°, 100° |
XYZ | 89.32, 92.74, 94.07 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11111111 | 11110101 | 11101110 |
Octal | 377 | 365 | 356 |
Decimal | 255 | 245 | 238 |
Hex | FF | F5 | EE |
Shades of #FFF5EE
Tints of #FFF5EE
.mybgColor {background-color: #FFF5EE;} .myforeColor {color: #FFF5EE;} .myborderColor {border:3px solid #FFF5EE;}
<p style="color:#FFF5EE">Text here</p>
This sample text is styled with the font color #FFF5EE. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,
<div style="background-color:#FFF5EE">Div content here</div>
<div style="border:3px solid #FFF5EE">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(255, 245, 238, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #FFF5EE; } .divShadow { -moz-box-shadow: 1px 1px 3px #FFF5EE; -webkit-box-shadow: 1px 1px 3px #FFF5EE; box-shadow: 1px 1px 3px #FFF5EE; }
<p style="text-shadow: 4px 4px 2px rgba(255, 245, 238, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #FFF5EE;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #FFF5EE;
-webkit-box-shadow: 1px 1px 3px #FFF5EE;
box-shadow: 1px 1px 3px #FFF5EE;">Div content here</div>