HEX: #ACB4BE
RGB: (172,180,190)
#ACB4BE contains red, green and blue colors in about the same proportion. Web safe color of #ACB4BE is #99CCCC (or #9CC).
#ACB4BE color RGB value is (172,180,190).
RGB: (172,180,190) (67%,71%,75%)
R 172 of 255 = 67%
G 180 of 255 = 71%
B 190 of 255 = 75%
R + G + B ~ 71%. #ACB4BE is quite light color.
R + G + B =
172 + 180 + 190 = 542 (100%)
R 172 of 542 ~ 31.73%
G 180 of 542 ~ 33.21%
B 190 of 542 ~ 35.06%
#ACB4BE color CMYK value is (9,5,0,25).
CMYK: (9,5,0,25) C9M5Y0K25 (9%,5%,0%,25%) (0.09/0.05/0.00/0.25)
AC | B4 | BE | |
---|---|---|---|
RGB | 172 | 180 | 190 |
HSL | 213° | 12.16% | 70.98% |
HSB/HSV | 213° | 9.47% | 74.51% |
CMYK | 9.47% | 5.26% | 0.00% |
25.49% |
HEX | AC | B4 | BE |
Decimal | 172 | 180 | 190 |
Binary | 10101100 | 10110100 | 10111110 |
Octal | 254 | 264 | 276 |
Examples of css and html codes for elements with #ACB4BE color. Also use rgb(172,180,190) instead hex code.
.myTextColor { color: #ACB4BE; }
<p style="color:#ACB4BE">This sample text font color is #ACB4BE.</p>
This text font color is #ACB4BE.
.myBgColor { background-color: #ACB4BE; }
<div style="background-color:#ACB4BE">Inner text</div>
This div background color is #ACB4BE.
.myBorderColor { border: 1px solid #ACB4BE; }
<div style="border:3px solid #ACB4BE">Div</div>
This div border color is #ACB4BE.
.myOpacity80 { color: #ACB4BE; opacity: 0.8; }
<p style="color:#ACB4BE;opacity:0.8;">80%</p>
Text with #ACB4BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACB4BE;}
<p style="text-shadow: 3px 3px 1px #ACB4BE">Text here.</p>
This text has shadow with #ACB4BE color.
.textShadow {text-shadow: 3px 3px 1px #ACB4BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACB4BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACB4BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACB4BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACB4BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACB4BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACB4BE; -webkit-box-shadow: 1px 1px 3px 2px #ACB4BE; box-shadow: 1px 1px 3px 2px #ACB4BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACB4BE; -webkit-box-shadow: 1px 1px 3px 2px #ACB4BE; box-shadow:1px 1px 3px 2px #ACB4BE;">
Div content here</div>
This text has color #ACB4BE on black background.
This text has color #ACB4BE on white background.
This text has black color on #ACB4BE background.
This text has white color on #ACB4BE background.