HEX: #A4BCBC
RGB: (164,188,188)
#A4BCBC contains red, green and blue colors in about the same proportion. Web safe color of #A4BCBC is #99CCCC (or #9CC).
#A4BCBC color RGB value is (164,188,188).
RGB: (164,188,188) (64%,74%,74%)
R 164 of 255 = 64%
G 188 of 255 = 74%
B 188 of 255 = 74%
R + G + B ~ 71%. #A4BCBC is quite light color.
R + G + B =
164 + 188 + 188 = 540 (100%)
R 164 of 540 ~ 30.37%
G 188 of 540 ~ 34.81%
B 188 of 540 ~ 34.81%
#A4BCBC color CMYK value is (13,0,0,26).
CMYK: (13,0,0,26) C13M0Y0K26 (13%,0%,0%,26%) (0.13/0.00/0.00/0.26)
A4 | BC | BC | |
---|---|---|---|
RGB | 164 | 188 | 188 |
HSL | 180° | 15.19% | 69.02% |
HSB/HSV | 180° | 12.77% | 73.73% |
CMYK | 12.77% | 0.00% | 0.00% |
26.27% |
HEX | A4 | BC | BC |
Decimal | 164 | 188 | 188 |
Binary | 10100100 | 10111100 | 10111100 |
Octal | 244 | 274 | 274 |
Examples of css and html codes for elements with #A4BCBC color. Also use rgb(164,188,188) instead hex code.
.myTextColor { color: #A4BCBC; }
<p style="color:#A4BCBC">This sample text font color is #A4BCBC.</p>
This text font color is #A4BCBC.
.myBgColor { background-color: #A4BCBC; }
<div style="background-color:#A4BCBC">Inner text</div>
This div background color is #A4BCBC.
.myBorderColor { border: 1px solid #A4BCBC; }
<div style="border:3px solid #A4BCBC">Div</div>
This div border color is #A4BCBC.
.myOpacity80 { color: #A4BCBC; opacity: 0.8; }
<p style="color:#A4BCBC;opacity:0.8;">80%</p>
Text with #A4BCBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4BCBC;}
<p style="text-shadow: 3px 3px 1px #A4BCBC">Text here.</p>
This text has shadow with #A4BCBC color.
.textShadow {text-shadow: 3px 3px 1px #A4BCBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4BCBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4BCBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4BCBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4BCBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4BCBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4BCBC; -webkit-box-shadow: 1px 1px 3px 2px #A4BCBC; box-shadow: 1px 1px 3px 2px #A4BCBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4BCBC; -webkit-box-shadow: 1px 1px 3px 2px #A4BCBC; box-shadow:1px 1px 3px 2px #A4BCBC;">
Div content here</div>
This text has color #A4BCBC on black background.
This text has color #A4BCBC on white background.
This text has black color on #A4BCBC background.
This text has white color on #A4BCBC background.