HEX: #DBCAEB
RGB: (219,202,235)
#DBCAEB contains red, green and blue colors in about the same proportion. Web safe color of #DBCAEB is #CCCCFF (or #CCF).
#DBCAEB color RGB value is (219,202,235).
RGB: (219,202,235) (86%,79%,92%)
R 219 of 255 = 86%
G 202 of 255 = 79%
B 235 of 255 = 92%
R + G + B ~ 86%. #DBCAEB is light color.
R + G + B =
219 + 202 + 235 = 656 (100%)
R 219 of 656 ~ 33.38%
G 202 of 656 ~ 30.79%
B 235 of 656 ~ 35.82%
#DBCAEB color CMYK value is (7,14,0,8).
CMYK: (7,14,0,8) C7M14Y0K8 (7%,14%,0%,8%) (0.07/0.14/0.00/0.08)
DB | CA | EB | |
---|---|---|---|
RGB | 219 | 202 | 235 |
HSL | 271° | 45.21% | 85.69% |
HSB/HSV | 271° | 14.04% | 92.16% |
CMYK | 6.81% | 14.04% | 0.00% |
7.84% |
HEX | DB | CA | EB |
Decimal | 219 | 202 | 235 |
Binary | 11011011 | 11001010 | 11101011 |
Octal | 333 | 312 | 353 |
Examples of css and html codes for elements with #DBCAEB color. Also use rgb(219,202,235) instead hex code.
.myTextColor { color: #DBCAEB; }
<p style="color:#DBCAEB">This sample text font color is #DBCAEB.</p>
This text font color is #DBCAEB.
.myBgColor { background-color: #DBCAEB; }
<div style="background-color:#DBCAEB">Inner text</div>
This div background color is #DBCAEB.
.myBorderColor { border: 1px solid #DBCAEB; }
<div style="border:3px solid #DBCAEB">Div</div>
This div border color is #DBCAEB.
.myOpacity80 { color: #DBCAEB; opacity: 0.8; }
<p style="color:#DBCAEB;opacity:0.8;">80%</p>
Text with #DBCAEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DBCAEB;}
<p style="text-shadow: 3px 3px 1px #DBCAEB">Text here.</p>
This text has shadow with #DBCAEB color.
.textShadow {text-shadow: 3px 3px 1px #DBCAEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DBCAEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DBCAEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DBCAEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DBCAEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DBCAEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DBCAEB; -webkit-box-shadow: 1px 1px 3px 2px #DBCAEB; box-shadow: 1px 1px 3px 2px #DBCAEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DBCAEB; -webkit-box-shadow: 1px 1px 3px 2px #DBCAEB; box-shadow:1px 1px 3px 2px #DBCAEB;">
Div content here</div>
This text has color #DBCAEB on black background.
This text has color #DBCAEB on white background.
This text has black color on #DBCAEB background.
This text has white color on #DBCAEB background.