HEX: #ABBEB1
RGB: (171,190,177)
#ABBEB1 contains red, green and blue colors in about the same proportion. Web safe color of #ABBEB1 is #99CC99 (or #9C9).
#ABBEB1 color RGB value is (171,190,177).
RGB: (171,190,177) (67%,75%,69%)
R 171 of 255 = 67%
G 190 of 255 = 75%
B 177 of 255 = 69%
R + G + B ~ 70%. #ABBEB1 is quite light color.
R + G + B =
171 + 190 + 177 = 538 (100%)
R 171 of 538 ~ 31.78%
G 190 of 538 ~ 35.32%
B 177 of 538 ~ 32.9%
#ABBEB1 color CMYK value is (10,0,7,25).
CMYK: (10,0,7,25) C10M0Y7K25 (10%,0%,7%,25%) (0.10/0.00/0.07/0.25)
AB | BE | B1 | |
---|---|---|---|
RGB | 171 | 190 | 177 |
HSL | 139° | 12.75% | 70.78% |
HSB/HSV | 139° | 10.00% | 74.51% |
CMYK | 10.00% | 0.00% | 6.84% |
25.49% |
HEX | AB | BE | B1 |
Decimal | 171 | 190 | 177 |
Binary | 10101011 | 10111110 | 10110001 |
Octal | 253 | 276 | 261 |
Examples of css and html codes for elements with #ABBEB1 color. Also use rgb(171,190,177) instead hex code.
.myTextColor { color: #ABBEB1; }
<p style="color:#ABBEB1">This sample text font color is #ABBEB1.</p>
This text font color is #ABBEB1.
.myBgColor { background-color: #ABBEB1; }
<div style="background-color:#ABBEB1">Inner text</div>
This div background color is #ABBEB1.
.myBorderColor { border: 1px solid #ABBEB1; }
<div style="border:3px solid #ABBEB1">Div</div>
This div border color is #ABBEB1.
.myOpacity80 { color: #ABBEB1; opacity: 0.8; }
<p style="color:#ABBEB1;opacity:0.8;">80%</p>
Text with #ABBEB1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBEB1;}
<p style="text-shadow: 3px 3px 1px #ABBEB1">Text here.</p>
This text has shadow with #ABBEB1 color.
.textShadow {text-shadow: 3px 3px 1px #ABBEB1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBEB1, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBEB1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBEB1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBEB1, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBEB1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBEB1; -webkit-box-shadow: 1px 1px 3px 2px #ABBEB1; box-shadow: 1px 1px 3px 2px #ABBEB1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBEB1; -webkit-box-shadow: 1px 1px 3px 2px #ABBEB1; box-shadow:1px 1px 3px 2px #ABBEB1;">
Div content here</div>
This text has color #ABBEB1 on black background.
This text has color #ABBEB1 on white background.
This text has black color on #ABBEB1 background.
This text has white color on #ABBEB1 background.