HEX: #D2E388
RGB: (210,227,136)
#D2E388 contains mainly red and green colors. Web safe color of #D2E388 is #CCCC99 (or #CC9).
#D2E388 color RGB value is (210,227,136).
RGB: (210,227,136) (82%,89%,53%)
R 210 of 255 = 82%
G 227 of 255 = 89%
B 136 of 255 = 53%
R + G + B ~ 75%. #D2E388 is quite light color.
R + G + B =
210 + 227 + 136 = 573 (100%)
R 210 of 573 ~ 36.65%
G 227 of 573 ~ 39.62%
B 136 of 573 ~ 23.73%
#D2E388 color CMYK value is (7,0,40,11).
CMYK: (7,0,40,11) C7M0Y40K11 (7%,0%,40%,11%) (0.07/0.00/0.40/0.11)
D2 | E3 | 88 | |
---|---|---|---|
RGB | 210 | 227 | 136 |
HSL | 71° | 61.90% | 71.18% |
HSB/HSV | 71° | 40.09% | 89.02% |
CMYK | 7.49% | 0.00% | 40.09% |
10.98% |
HEX | D2 | E3 | 88 |
Decimal | 210 | 227 | 136 |
Binary | 11010010 | 11100011 | 10001000 |
Octal | 322 | 343 | 210 |
Examples of css and html codes for elements with #D2E388 color. Also use rgb(210,227,136) instead hex code.
.myTextColor { color: #D2E388; }
<p style="color:#D2E388">This sample text font color is #D2E388.</p>
This text font color is #D2E388.
.myBgColor { background-color: #D2E388; }
<div style="background-color:#D2E388">Inner text</div>
This div background color is #D2E388.
.myBorderColor { border: 1px solid #D2E388; }
<div style="border:3px solid #D2E388">Div</div>
This div border color is #D2E388.
.myOpacity80 { color: #D2E388; opacity: 0.8; }
<p style="color:#D2E388;opacity:0.8;">80%</p>
Text with #D2E388 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D2E388;}
<p style="text-shadow: 3px 3px 1px #D2E388">Text here.</p>
This text has shadow with #D2E388 color.
.textShadow {text-shadow: 3px 3px 1px #D2E388, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D2E388, 5px 5px 20px red">Text here.</p>
This text has shadow with #D2E388 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D2E388, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D2E388, Direction=45, Strength=4)">Text</p>
This text has shadow with #D2E388 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D2E388; -webkit-box-shadow: 1px 1px 3px 2px #D2E388; box-shadow: 1px 1px 3px 2px #D2E388; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D2E388; -webkit-box-shadow: 1px 1px 3px 2px #D2E388; box-shadow:1px 1px 3px 2px #D2E388;">
Div content here</div>
This text has color #D2E388 on black background.
This text has color #D2E388 on white background.
This text has black color on #D2E388 background.
This text has white color on #D2E388 background.