HEX: #D4E85C
RGB: (212,232,92)
#D4E85C contains mainly red and green colors. Web safe color of #D4E85C is #CCFF66 (or #CF6).
#D4E85C color RGB value is (212,232,92).
RGB: (212,232,92) (83%,91%,36%)
R 212 of 255 = 83%
G 232 of 255 = 91%
B 92 of 255 = 36%
R + G + B ~ 70%. #D4E85C is quite light color.
R + G + B =
212 + 232 + 92 = 536 (100%)
R 212 of 536 ~ 39.55%
G 232 of 536 ~ 43.28%
B 92 of 536 ~ 17.16%
#D4E85C color CMYK value is (9,0,60,9).
CMYK: (9,0,60,9) C9M0Y60K9 (9%,0%,60%,9%) (0.09/0.00/0.60/0.09)
D4 | E8 | 5C | |
---|---|---|---|
RGB | 212 | 232 | 92 |
HSL | 69° | 75.27% | 63.53% |
HSB/HSV | 69° | 60.34% | 90.98% |
CMYK | 8.62% | 0.00% | 60.34% |
9.02% |
HEX | D4 | E8 | 5C |
Decimal | 212 | 232 | 92 |
Binary | 11010100 | 11101000 | 1011100 |
Octal | 324 | 350 | 134 |
Examples of css and html codes for elements with #D4E85C color. Also use rgb(212,232,92) instead hex code.
.myTextColor { color: #D4E85C; }
<p style="color:#D4E85C">This sample text font color is #D4E85C.</p>
This text font color is #D4E85C.
.myBgColor { background-color: #D4E85C; }
<div style="background-color:#D4E85C">Inner text</div>
This div background color is #D4E85C.
.myBorderColor { border: 1px solid #D4E85C; }
<div style="border:3px solid #D4E85C">Div</div>
This div border color is #D4E85C.
.myOpacity80 { color: #D4E85C; opacity: 0.8; }
<p style="color:#D4E85C;opacity:0.8;">80%</p>
Text with #D4E85C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4E85C;}
<p style="text-shadow: 3px 3px 1px #D4E85C">Text here.</p>
This text has shadow with #D4E85C color.
.textShadow {text-shadow: 3px 3px 1px #D4E85C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4E85C, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4E85C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4E85C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4E85C, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4E85C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4E85C; -webkit-box-shadow: 1px 1px 3px 2px #D4E85C; box-shadow: 1px 1px 3px 2px #D4E85C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4E85C; -webkit-box-shadow: 1px 1px 3px 2px #D4E85C; box-shadow:1px 1px 3px 2px #D4E85C;">
Div content here</div>
This text has color #D4E85C on black background.
This text has color #D4E85C on white background.
This text has black color on #D4E85C background.
This text has white color on #D4E85C background.