HEX: #DACCEE
RGB: (218,204,238)
#DACCEE contains red, green and blue colors in about the same proportion. Web safe color of #DACCEE is #CCCCFF (or #CCF).
#DACCEE color RGB value is (218,204,238).
RGB: (218,204,238) (85%,80%,93%)
R 218 of 255 = 85%
G 204 of 255 = 80%
B 238 of 255 = 93%
R + G + B ~ 86%. #DACCEE is light color.
R + G + B =
218 + 204 + 238 = 660 (100%)
R 218 of 660 ~ 33.03%
G 204 of 660 ~ 30.91%
B 238 of 660 ~ 36.06%
#DACCEE color CMYK value is (8,14,0,7).
CMYK: (8,14,0,7) C8M14Y0K7 (8%,14%,0%,7%) (0.08/0.14/0.00/0.07)
DA | CC | EE | |
---|---|---|---|
RGB | 218 | 204 | 238 |
HSL | 265° | 50.00% | 86.67% |
HSB/HSV | 265° | 14.29% | 93.33% |
CMYK | 8.40% | 14.29% | 0.00% |
6.67% |
HEX | DA | CC | EE |
Decimal | 218 | 204 | 238 |
Binary | 11011010 | 11001100 | 11101110 |
Octal | 332 | 314 | 356 |
Examples of css and html codes for elements with #DACCEE color. Also use rgb(218,204,238) instead hex code.
.myTextColor { color: #DACCEE; }
<p style="color:#DACCEE">This sample text font color is #DACCEE.</p>
This text font color is #DACCEE.
.myBgColor { background-color: #DACCEE; }
<div style="background-color:#DACCEE">Inner text</div>
This div background color is #DACCEE.
.myBorderColor { border: 1px solid #DACCEE; }
<div style="border:3px solid #DACCEE">Div</div>
This div border color is #DACCEE.
.myOpacity80 { color: #DACCEE; opacity: 0.8; }
<p style="color:#DACCEE;opacity:0.8;">80%</p>
Text with #DACCEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DACCEE;}
<p style="text-shadow: 3px 3px 1px #DACCEE">Text here.</p>
This text has shadow with #DACCEE color.
.textShadow {text-shadow: 3px 3px 1px #DACCEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DACCEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #DACCEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DACCEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DACCEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #DACCEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DACCEE; -webkit-box-shadow: 1px 1px 3px 2px #DACCEE; box-shadow: 1px 1px 3px 2px #DACCEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DACCEE; -webkit-box-shadow: 1px 1px 3px 2px #DACCEE; box-shadow:1px 1px 3px 2px #DACCEE;">
Div content here</div>
This text has color #DACCEE on black background.
This text has color #DACCEE on white background.
This text has black color on #DACCEE background.
This text has white color on #DACCEE background.