HEX: #DFEBB6
RGB: (223,235,182)
#DFEBB6 contains red, green and blue colors in about the same proportion. Web safe color of #DFEBB6 is #CCFFCC (or #CFC).
#DFEBB6 color RGB value is (223,235,182).
RGB: (223,235,182) (87%,92%,71%)
R 223 of 255 = 87%
G 235 of 255 = 92%
B 182 of 255 = 71%
R + G + B ~ 83%. #DFEBB6 is quite light color.
R + G + B =
223 + 235 + 182 = 640 (100%)
R 223 of 640 ~ 34.84%
G 235 of 640 ~ 36.72%
B 182 of 640 ~ 28.44%
#DFEBB6 color CMYK value is (5,0,23,8).
CMYK: (5,0,23,8) C5M0Y23K8 (5%,0%,23%,8%) (0.05/0.00/0.23/0.08)
DF | EB | B6 | |
---|---|---|---|
RGB | 223 | 235 | 182 |
HSL | 74° | 56.99% | 81.76% |
HSB/HSV | 74° | 22.55% | 92.16% |
CMYK | 5.11% | 0.00% | 22.55% |
7.84% |
HEX | DF | EB | B6 |
Decimal | 223 | 235 | 182 |
Binary | 11011111 | 11101011 | 10110110 |
Octal | 337 | 353 | 266 |
Examples of css and html codes for elements with #DFEBB6 color. Also use rgb(223,235,182) instead hex code.
.myTextColor { color: #DFEBB6; }
<p style="color:#DFEBB6">This sample text font color is #DFEBB6.</p>
This text font color is #DFEBB6.
.myBgColor { background-color: #DFEBB6; }
<div style="background-color:#DFEBB6">Inner text</div>
This div background color is #DFEBB6.
.myBorderColor { border: 1px solid #DFEBB6; }
<div style="border:3px solid #DFEBB6">Div</div>
This div border color is #DFEBB6.
.myOpacity80 { color: #DFEBB6; opacity: 0.8; }
<p style="color:#DFEBB6;opacity:0.8;">80%</p>
Text with #DFEBB6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DFEBB6;}
<p style="text-shadow: 3px 3px 1px #DFEBB6">Text here.</p>
This text has shadow with #DFEBB6 color.
.textShadow {text-shadow: 3px 3px 1px #DFEBB6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DFEBB6, 5px 5px 20px red">Text here.</p>
This text has shadow with #DFEBB6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DFEBB6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DFEBB6, Direction=45, Strength=4)">Text</p>
This text has shadow with #DFEBB6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DFEBB6; -webkit-box-shadow: 1px 1px 3px 2px #DFEBB6; box-shadow: 1px 1px 3px 2px #DFEBB6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DFEBB6; -webkit-box-shadow: 1px 1px 3px 2px #DFEBB6; box-shadow:1px 1px 3px 2px #DFEBB6;">
Div content here</div>
This text has color #DFEBB6 on black background.
This text has color #DFEBB6 on white background.
This text has black color on #DFEBB6 background.
This text has white color on #DFEBB6 background.