HEX: #B4DACC
RGB: (180,218,204)
#B4DACC contains red, green and blue colors in about the same proportion. Web safe color of #B4DACC is #CCCCCC (or #CCC).
#B4DACC color RGB value is (180,218,204).
RGB: (180,218,204) (71%,85%,80%)
R 180 of 255 = 71%
G 218 of 255 = 85%
B 204 of 255 = 80%
R + G + B ~ 79%. #B4DACC is quite light color.
R + G + B =
180 + 218 + 204 = 602 (100%)
R 180 of 602 ~ 29.9%
G 218 of 602 ~ 36.21%
B 204 of 602 ~ 33.89%
#B4DACC color CMYK value is (17,0,6,15).
CMYK: (17,0,6,15) C17M0Y6K15 (17%,0%,6%,15%) (0.17/0.00/0.06/0.15)
B4 | DA | CC | |
---|---|---|---|
RGB | 180 | 218 | 204 |
HSL | 158° | 33.93% | 78.04% |
HSB/HSV | 158° | 17.43% | 85.49% |
CMYK | 17.43% | 0.00% | 6.42% |
14.51% |
HEX | B4 | DA | CC |
Decimal | 180 | 218 | 204 |
Binary | 10110100 | 11011010 | 11001100 |
Octal | 264 | 332 | 314 |
Examples of css and html codes for elements with #B4DACC color. Also use rgb(180,218,204) instead hex code.
.myTextColor { color: #B4DACC; }
<p style="color:#B4DACC">This sample text font color is #B4DACC.</p>
This text font color is #B4DACC.
.myBgColor { background-color: #B4DACC; }
<div style="background-color:#B4DACC">Inner text</div>
This div background color is #B4DACC.
.myBorderColor { border: 1px solid #B4DACC; }
<div style="border:3px solid #B4DACC">Div</div>
This div border color is #B4DACC.
.myOpacity80 { color: #B4DACC; opacity: 0.8; }
<p style="color:#B4DACC;opacity:0.8;">80%</p>
Text with #B4DACC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4DACC;}
<p style="text-shadow: 3px 3px 1px #B4DACC">Text here.</p>
This text has shadow with #B4DACC color.
.textShadow {text-shadow: 3px 3px 1px #B4DACC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4DACC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4DACC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4DACC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4DACC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4DACC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4DACC; -webkit-box-shadow: 1px 1px 3px 2px #B4DACC; box-shadow: 1px 1px 3px 2px #B4DACC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4DACC; -webkit-box-shadow: 1px 1px 3px 2px #B4DACC; box-shadow:1px 1px 3px 2px #B4DACC;">
Div content here</div>
This text has color #B4DACC on black background.
This text has color #B4DACC on white background.
This text has black color on #B4DACC background.
This text has white color on #B4DACC background.