HEX: #55ABCA
RGB: (85,171,202)
#55ABCA contains mainly green and blue colors. Web safe color of #55ABCA is #6699CC (or #69C).
#55ABCA color RGB value is (85,171,202).
RGB: (85,171,202) (33%,67%,79%)
R 85 of 255 = 33%
G 171 of 255 = 67%
B 202 of 255 = 79%
R + G + B ~ 60%. #55ABCA is middle color (not dark and not light).
R + G + B =
85 + 171 + 202 = 458 (100%)
R 85 of 458 ~ 18.56%
G 171 of 458 ~ 37.34%
B 202 of 458 ~ 44.1%
#55ABCA color CMYK value is (58,15,0,21).
CMYK: (58,15,0,21) C58M15Y0K21 (58%,15%,0%,21%) (0.58/0.15/0.00/0.21)
55 | AB | CA | |
---|---|---|---|
RGB | 85 | 171 | 202 |
HSL | 196° | 52.47% | 56.27% |
HSB/HSV | 196° | 57.92% | 79.22% |
CMYK | 57.92% | 15.35% | 0.00% |
20.78% |
HEX | 55 | AB | CA |
Decimal | 85 | 171 | 202 |
Binary | 1010101 | 10101011 | 11001010 |
Octal | 125 | 253 | 312 |
Examples of css and html codes for elements with #55ABCA color. Also use rgb(85,171,202) instead hex code.
.myTextColor { color: #55ABCA; }
<p style="color:#55ABCA">This sample text font color is #55ABCA.</p>
This text font color is #55ABCA.
.myBgColor { background-color: #55ABCA; }
<div style="background-color:#55ABCA">Inner text</div>
This div background color is #55ABCA.
.myBorderColor { border: 1px solid #55ABCA; }
<div style="border:3px solid #55ABCA">Div</div>
This div border color is #55ABCA.
.myOpacity80 { color: #55ABCA; opacity: 0.8; }
<p style="color:#55ABCA;opacity:0.8;">80%</p>
Text with #55ABCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55ABCA;}
<p style="text-shadow: 3px 3px 1px #55ABCA">Text here.</p>
This text has shadow with #55ABCA color.
.textShadow {text-shadow: 3px 3px 1px #55ABCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55ABCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #55ABCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55ABCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55ABCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #55ABCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55ABCA; -webkit-box-shadow: 1px 1px 3px 2px #55ABCA; box-shadow: 1px 1px 3px 2px #55ABCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55ABCA; -webkit-box-shadow: 1px 1px 3px 2px #55ABCA; box-shadow:1px 1px 3px 2px #55ABCA;">
Div content here</div>
This text has color #55ABCA on black background.
This text has color #55ABCA on white background.
This text has black color on #55ABCA background.
This text has white color on #55ABCA background.