HEX: #ACCEB2
RGB: (172,206,178)
#ACCEB2 contains red, green and blue colors in about the same proportion. Web safe color of #ACCEB2 is #99CC99 (or #9C9).
#ACCEB2 color RGB value is (172,206,178).
RGB: (172,206,178) (67%,81%,70%)
R 172 of 255 = 67%
G 206 of 255 = 81%
B 178 of 255 = 70%
R + G + B ~ 73%. #ACCEB2 is quite light color.
R + G + B =
172 + 206 + 178 = 556 (100%)
R 172 of 556 ~ 30.94%
G 206 of 556 ~ 37.05%
B 178 of 556 ~ 32.01%
#ACCEB2 color CMYK value is (17,0,14,19).
CMYK: (17,0,14,19) C17M0Y14K19 (17%,0%,14%,19%) (0.17/0.00/0.14/0.19)
AC | CE | B2 | |
---|---|---|---|
RGB | 172 | 206 | 178 |
HSL | 131° | 25.76% | 74.12% |
HSB/HSV | 131° | 16.50% | 80.78% |
CMYK | 16.50% | 0.00% | 13.59% |
19.22% |
HEX | AC | CE | B2 |
Decimal | 172 | 206 | 178 |
Binary | 10101100 | 11001110 | 10110010 |
Octal | 254 | 316 | 262 |
Examples of css and html codes for elements with #ACCEB2 color. Also use rgb(172,206,178) instead hex code.
.myTextColor { color: #ACCEB2; }
<p style="color:#ACCEB2">This sample text font color is #ACCEB2.</p>
This text font color is #ACCEB2.
.myBgColor { background-color: #ACCEB2; }
<div style="background-color:#ACCEB2">Inner text</div>
This div background color is #ACCEB2.
.myBorderColor { border: 1px solid #ACCEB2; }
<div style="border:3px solid #ACCEB2">Div</div>
This div border color is #ACCEB2.
.myOpacity80 { color: #ACCEB2; opacity: 0.8; }
<p style="color:#ACCEB2;opacity:0.8;">80%</p>
Text with #ACCEB2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACCEB2;}
<p style="text-shadow: 3px 3px 1px #ACCEB2">Text here.</p>
This text has shadow with #ACCEB2 color.
.textShadow {text-shadow: 3px 3px 1px #ACCEB2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACCEB2, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACCEB2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACCEB2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACCEB2, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACCEB2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACCEB2; -webkit-box-shadow: 1px 1px 3px 2px #ACCEB2; box-shadow: 1px 1px 3px 2px #ACCEB2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACCEB2; -webkit-box-shadow: 1px 1px 3px 2px #ACCEB2; box-shadow:1px 1px 3px 2px #ACCEB2;">
Div content here</div>
This text has color #ACCEB2 on black background.
This text has color #ACCEB2 on white background.
This text has black color on #ACCEB2 background.
This text has white color on #ACCEB2 background.