HEX: #DDFFDD
RGB: (221,255,221)
#DDFFDD contains red, green and blue colors in about the same proportion. Web safe color of #DDFFDD is #CCFFCC (or #CFC).
#DDFFDD color RGB value is (221,255,221).
RGB: (221,255,221) (87%,100%,87%)
R 221 of 255 = 87%
G 255 of 255 = 100%
B 221 of 255 = 87%
R + G + B ~ 91%. #DDFFDD is light color.
R + G + B =
221 + 255 + 221 = 697 (100%)
R 221 of 697 ~ 31.71%
G 255 of 697 ~ 36.59%
B 221 of 697 ~ 31.71%
#DDFFDD color CMYK value is (13,0,13,0).
CMYK: (13,0,13,0) C13M0Y13K0 (13%,0%,13%,0%) (0.13/0.00/0.13/0.00)
DD | FF | DD | |
---|---|---|---|
RGB | 221 | 255 | 221 |
HSL | 120° | 100.00% | 93.33% |
HSB/HSV | 120° | 13.33% | 100.00% |
CMYK | 13.33% | 0.00% | 13.33% |
0.00% |
HEX | DD | FF | DD |
Decimal | 221 | 255 | 221 |
Binary | 11011101 | 11111111 | 11011101 |
Octal | 335 | 377 | 335 |
Examples of css and html codes for elements with #DDFFDD color. Also use rgb(221,255,221) instead hex code.
.myTextColor { color: #DDFFDD; }
<p style="color:#DDFFDD">This sample text font color is #DDFFDD.</p>
This text font color is #DDFFDD.
.myBgColor { background-color: #DDFFDD; }
<div style="background-color:#DDFFDD">Inner text</div>
This div background color is #DDFFDD.
.myBorderColor { border: 1px solid #DDFFDD; }
<div style="border:3px solid #DDFFDD">Div</div>
This div border color is #DDFFDD.
.myOpacity80 { color: #DDFFDD; opacity: 0.8; }
<p style="color:#DDFFDD;opacity:0.8;">80%</p>
Text with #DDFFDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDFFDD;}
<p style="text-shadow: 3px 3px 1px #DDFFDD">Text here.</p>
This text has shadow with #DDFFDD color.
.textShadow {text-shadow: 3px 3px 1px #DDFFDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDFFDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDFFDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDFFDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDFFDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDFFDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDFFDD; -webkit-box-shadow: 1px 1px 3px 2px #DDFFDD; box-shadow: 1px 1px 3px 2px #DDFFDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDFFDD; -webkit-box-shadow: 1px 1px 3px 2px #DDFFDD; box-shadow:1px 1px 3px 2px #DDFFDD;">
Div content here</div>
This text has color #DDFFDD on black background.
This text has color #DDFFDD on white background.
This text has black color on #DDFFDD background.
This text has white color on #DDFFDD background.