HEX: #DACCEB
RGB: (218,204,235)
#DACCEB contains red, green and blue colors in about the same proportion. Web safe color of #DACCEB is #CCCCFF (or #CCF).
#DACCEB color RGB value is (218,204,235).
RGB: (218,204,235) (85%,80%,92%)
R 218 of 255 = 85%
G 204 of 255 = 80%
B 235 of 255 = 92%
R + G + B ~ 86%. #DACCEB is light color.
R + G + B =
218 + 204 + 235 = 657 (100%)
R 218 of 657 ~ 33.18%
G 204 of 657 ~ 31.05%
B 235 of 657 ~ 35.77%
#DACCEB color CMYK value is (7,13,0,8).
CMYK: (7,13,0,8) C7M13Y0K8 (7%,13%,0%,8%) (0.07/0.13/0.00/0.08)
DA | CC | EB | |
---|---|---|---|
RGB | 218 | 204 | 235 |
HSL | 267° | 43.66% | 86.08% |
HSB/HSV | 267° | 13.19% | 92.16% |
CMYK | 7.23% | 13.19% | 0.00% |
7.84% |
HEX | DA | CC | EB |
Decimal | 218 | 204 | 235 |
Binary | 11011010 | 11001100 | 11101011 |
Octal | 332 | 314 | 353 |
Examples of css and html codes for elements with #DACCEB color. Also use rgb(218,204,235) instead hex code.
.myTextColor { color: #DACCEB; }
<p style="color:#DACCEB">This sample text font color is #DACCEB.</p>
This text font color is #DACCEB.
.myBgColor { background-color: #DACCEB; }
<div style="background-color:#DACCEB">Inner text</div>
This div background color is #DACCEB.
.myBorderColor { border: 1px solid #DACCEB; }
<div style="border:3px solid #DACCEB">Div</div>
This div border color is #DACCEB.
.myOpacity80 { color: #DACCEB; opacity: 0.8; }
<p style="color:#DACCEB;opacity:0.8;">80%</p>
Text with #DACCEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DACCEB;}
<p style="text-shadow: 3px 3px 1px #DACCEB">Text here.</p>
This text has shadow with #DACCEB color.
.textShadow {text-shadow: 3px 3px 1px #DACCEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DACCEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DACCEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DACCEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DACCEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DACCEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DACCEB; -webkit-box-shadow: 1px 1px 3px 2px #DACCEB; box-shadow: 1px 1px 3px 2px #DACCEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DACCEB; -webkit-box-shadow: 1px 1px 3px 2px #DACCEB; box-shadow:1px 1px 3px 2px #DACCEB;">
Div content here</div>
This text has color #DACCEB on black background.
This text has color #DACCEB on white background.
This text has black color on #DACCEB background.
This text has white color on #DACCEB background.