#ffdb70 color RGB value is (15, 253, 183).
#ffdb70 hex color red value is 15, green value is 253, and blue value is 183.
Cylindrical-coordinate representations (HSL) of color #ffdb70
hue: 162.35,
saturation: 0.98 and lightness: 0.53.
The process color (four-color CMYK) of #ffdb70 color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #ffdb70 is #ff9999. Color #ffdb70 contains mainly RED.
Color spaces of #ffdb70 | Value |
---|---|
RGB | 255, 219, 112 |
HSL | 0.12, 1, 0.72 |
HSV | 45°, 56°, 100° |
XYZ | 69.5, 73.1, 25.77 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11111111 | 11011011 | 1110000 |
Octal | 377 | 333 | 160 |
Decimal | 255 | 219 | 112 |
Hex | FF | DB | 70 |
Shades of #ffdb70
Tints of #ffdb70
.mybgColor {background-color: #ffdb70;} .myforeColor {color: #ffdb70;} .myborderColor {border:3px solid #ffdb70;}
<p style="color:#ffdb70">Text here</p>
This sample text is styled with the font color #ffdb70. 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:#ffdb70">Div content here</div>
<div style="border:3px solid #ffdb70">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(255, 219, 112, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #ffdb70; } .divShadow { -moz-box-shadow: 1px 1px 3px #ffdb70; -webkit-box-shadow: 1px 1px 3px #ffdb70; box-shadow: 1px 1px 3px #ffdb70; }
<p style="text-shadow: 4px 4px 2px rgba(255, 219, 112, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #ffdb70;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #ffdb70;
-webkit-box-shadow: 1px 1px 3px #ffdb70;
box-shadow: 1px 1px 3px #ffdb70;">Div content here</div>