HEX: #ABBECE
RGB: (171,190,206)
#ABBECE contains red, green and blue colors in about the same proportion. Web safe color of #ABBECE is #99CCCC (or #9CC).
#ABBECE color RGB value is (171,190,206).
RGB: (171,190,206) (67%,75%,81%)
R 171 of 255 = 67%
G 190 of 255 = 75%
B 206 of 255 = 81%
R + G + B ~ 74%. #ABBECE is quite light color.
R + G + B =
171 + 190 + 206 = 567 (100%)
R 171 of 567 ~ 30.16%
G 190 of 567 ~ 33.51%
B 206 of 567 ~ 36.33%
#ABBECE color CMYK value is (17,8,0,19).
CMYK: (17,8,0,19) C17M8Y0K19 (17%,8%,0%,19%) (0.17/0.08/0.00/0.19)
AB | BE | CE | |
---|---|---|---|
RGB | 171 | 190 | 206 |
HSL | 207° | 26.32% | 73.92% |
HSB/HSV | 207° | 16.99% | 80.78% |
CMYK | 16.99% | 7.77% | 0.00% |
19.22% |
HEX | AB | BE | CE |
Decimal | 171 | 190 | 206 |
Binary | 10101011 | 10111110 | 11001110 |
Octal | 253 | 276 | 316 |
Examples of css and html codes for elements with #ABBECE color. Also use rgb(171,190,206) instead hex code.
.myTextColor { color: #ABBECE; }
<p style="color:#ABBECE">This sample text font color is #ABBECE.</p>
This text font color is #ABBECE.
.myBgColor { background-color: #ABBECE; }
<div style="background-color:#ABBECE">Inner text</div>
This div background color is #ABBECE.
.myBorderColor { border: 1px solid #ABBECE; }
<div style="border:3px solid #ABBECE">Div</div>
This div border color is #ABBECE.
.myOpacity80 { color: #ABBECE; opacity: 0.8; }
<p style="color:#ABBECE;opacity:0.8;">80%</p>
Text with #ABBECE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBECE;}
<p style="text-shadow: 3px 3px 1px #ABBECE">Text here.</p>
This text has shadow with #ABBECE color.
.textShadow {text-shadow: 3px 3px 1px #ABBECE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBECE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBECE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBECE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBECE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBECE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBECE; -webkit-box-shadow: 1px 1px 3px 2px #ABBECE; box-shadow: 1px 1px 3px 2px #ABBECE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBECE; -webkit-box-shadow: 1px 1px 3px 2px #ABBECE; box-shadow:1px 1px 3px 2px #ABBECE;">
Div content here</div>
This text has color #ABBECE on black background.
This text has color #ABBECE on white background.
This text has black color on #ABBECE background.
This text has white color on #ABBECE background.