HEX: #55B1FF
RGB: (85,177,255)
#55B1FF contains mainly blue color. Web safe color of #55B1FF is #6699FF (or #69F).
#55B1FF color RGB value is (85,177,255).
RGB: (85,177,255) (33%,69%,100%)
R 85 of 255 = 33%
G 177 of 255 = 69%
B 255 of 255 = 100%
R + G + B ~ 67%. #55B1FF is quite light color.
R + G + B =
85 + 177 + 255 = 517 (100%)
R 85 of 517 ~ 16.44%
G 177 of 517 ~ 34.24%
B 255 of 517 ~ 49.32%
#55B1FF color CMYK value is (67,31,0,0).
CMYK: (67,31,0,0) C67M31Y0K0 (67%,31%,0%,0%) (0.67/0.31/0.00/0.00)
55 | B1 | FF | |
---|---|---|---|
RGB | 85 | 177 | 255 |
HSL | 208° | 100.00% | 66.67% |
HSB/HSV | 208° | 66.67% | 100.00% |
CMYK | 66.67% | 30.59% | 0.00% |
0.00% |
HEX | 55 | B1 | FF |
Decimal | 85 | 177 | 255 |
Binary | 1010101 | 10110001 | 11111111 |
Octal | 125 | 261 | 377 |
Examples of css and html codes for elements with #55B1FF color. Also use rgb(85,177,255) instead hex code.
.myTextColor { color: #55B1FF; }
<p style="color:#55B1FF">This sample text font color is #55B1FF.</p>
This text font color is #55B1FF.
.myBgColor { background-color: #55B1FF; }
<div style="background-color:#55B1FF">Inner text</div>
This div background color is #55B1FF.
.myBorderColor { border: 1px solid #55B1FF; }
<div style="border:3px solid #55B1FF">Div</div>
This div border color is #55B1FF.
.myOpacity80 { color: #55B1FF; opacity: 0.8; }
<p style="color:#55B1FF;opacity:0.8;">80%</p>
Text with #55B1FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55B1FF;}
<p style="text-shadow: 3px 3px 1px #55B1FF">Text here.</p>
This text has shadow with #55B1FF color.
.textShadow {text-shadow: 3px 3px 1px #55B1FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55B1FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #55B1FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55B1FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55B1FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #55B1FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55B1FF; -webkit-box-shadow: 1px 1px 3px 2px #55B1FF; box-shadow: 1px 1px 3px 2px #55B1FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55B1FF; -webkit-box-shadow: 1px 1px 3px 2px #55B1FF; box-shadow:1px 1px 3px 2px #55B1FF;">
Div content here</div>
This text has color #55B1FF on black background.
This text has color #55B1FF on white background.
This text has black color on #55B1FF background.
This text has white color on #55B1FF background.