HEX: #D6F0AD
RGB: (214,240,173)
#D6F0AD contains mainly red and green colors. Web safe color of #D6F0AD is #CCFF99 (or #CF9).
#D6F0AD color RGB value is (214,240,173).
RGB: (214,240,173) (84%,94%,68%)
R 214 of 255 = 84%
G 240 of 255 = 94%
B 173 of 255 = 68%
R + G + B ~ 82%. #D6F0AD is quite light color.
R + G + B =
214 + 240 + 173 = 627 (100%)
R 214 of 627 ~ 34.13%
G 240 of 627 ~ 38.28%
B 173 of 627 ~ 27.59%
#D6F0AD color CMYK value is (11,0,28,6).
CMYK: (11,0,28,6) C11M0Y28K6 (11%,0%,28%,6%) (0.11/0.00/0.28/0.06)
D6 | F0 | AD | |
---|---|---|---|
RGB | 214 | 240 | 173 |
HSL | 83° | 69.07% | 80.98% |
HSB/HSV | 83° | 27.92% | 94.12% |
CMYK | 10.83% | 0.00% | 27.92% |
5.88% |
HEX | D6 | F0 | AD |
Decimal | 214 | 240 | 173 |
Binary | 11010110 | 11110000 | 10101101 |
Octal | 326 | 360 | 255 |
Examples of css and html codes for elements with #D6F0AD color. Also use rgb(214,240,173) instead hex code.
.myTextColor { color: #D6F0AD; }
<p style="color:#D6F0AD">This sample text font color is #D6F0AD.</p>
This text font color is #D6F0AD.
.myBgColor { background-color: #D6F0AD; }
<div style="background-color:#D6F0AD">Inner text</div>
This div background color is #D6F0AD.
.myBorderColor { border: 1px solid #D6F0AD; }
<div style="border:3px solid #D6F0AD">Div</div>
This div border color is #D6F0AD.
.myOpacity80 { color: #D6F0AD; opacity: 0.8; }
<p style="color:#D6F0AD;opacity:0.8;">80%</p>
Text with #D6F0AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6F0AD;}
<p style="text-shadow: 3px 3px 1px #D6F0AD">Text here.</p>
This text has shadow with #D6F0AD color.
.textShadow {text-shadow: 3px 3px 1px #D6F0AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6F0AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6F0AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6F0AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6F0AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6F0AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6F0AD; -webkit-box-shadow: 1px 1px 3px 2px #D6F0AD; box-shadow: 1px 1px 3px 2px #D6F0AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6F0AD; -webkit-box-shadow: 1px 1px 3px 2px #D6F0AD; box-shadow:1px 1px 3px 2px #D6F0AD;">
Div content here</div>
This text has color #D6F0AD on black background.
This text has color #D6F0AD on white background.
This text has black color on #D6F0AD background.
This text has white color on #D6F0AD background.