HEX: #ABBEE6
RGB: (171,190,230)
#ABBEE6 contains red, green and blue colors in about the same proportion. #ABBEE6 ‘ nin web güvenlik rengi #99CCCC (ya da #9CC) dir.
#ABBEE6 color RGB value is (171,190,230).
RGB: (171,190,230) (67%,75%,90%)
R 171 of 255 = 67%
G 190 of 255 = 75%
B 230 of 255 = 90%
R + G + B ~ 77%. #ABBEE6 is quite light color.
R + G + B =
171 + 190 + 230 = 591 (100%)
R 171 of 591 ~ 28.93%
G 190 of 591 ~ 32.15%
B 230 of 591 ~ 38.92%
#ABBEE6 rengi CMYK tonu (26,17,0,10).
CMYK: (26,17,0,10) C26M17Y0K10 (26%,17%,0%,10%) (0.26/0.17/0.00/0.10)
AB | BE | E6 | |
---|---|---|---|
RGB | 171 | 190 | 230 |
HSL | 221° | 54.13% | 78.63% |
HSB/HSV | 221° | 25.65% | 90.20% |
CMYK | 25.65% | 17.39% | 0.00% |
9.80% |
HEX | AB | BE | E6 |
Decimal | 171 | 190 | 230 |
Binary | 10101011 | 10111110 | 11100110 |
Octal | 253 | 276 | 346 |
Examples of css and html codes for elements with #ABBEE6 color. Also use rgb(171,190,230) instead hex code.
.myTextColor { color: #ABBEE6; }
<p style="color:#ABBEE6">This sample text font color is #ABBEE6.</p>
This text font color is #ABBEE6.
.myBgColor { background-color: #ABBEE6; }
<div style="background-color:#ABBEE6">Inner text</div>
This div background color is #ABBEE6.
.myBorderColor { border: 1px solid #ABBEE6; }
<div style="border:3px solid #ABBEE6">Div</div>
This div border color is #ABBEE6.
.myOpacity80 { color: #ABBEE6; opacity: 0.8; }
<p style="color:#ABBEE6;opacity:0.8;">80%</p>
Text with #ABBEE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBEE6;}
<p style="text-shadow: 3px 3px 1px #ABBEE6">Text here.</p>
This text has shadow with #ABBEE6 color.
.textShadow {text-shadow: 3px 3px 1px #ABBEE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBEE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBEE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBEE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBEE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBEE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBEE6; -webkit-box-shadow: 1px 1px 3px 2px #ABBEE6; box-shadow: 1px 1px 3px 2px #ABBEE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBEE6; -webkit-box-shadow: 1px 1px 3px 2px #ABBEE6; box-shadow:1px 1px 3px 2px #ABBEE6;">
Div content here</div>
This text has color #ABBEE6 on black background.
This text has color #ABBEE6 on white background.
This text has black color on #ABBEE6 background.
This text has white color on #ABBEE6 background.