HEX: #5EAFE3
RGB: (94,175,227)
#5EAFE3 contains mainly green and blue colors. Web safe color of #5EAFE3 is #6699CC (or #69C).
#5EAFE3 color RGB value is (94,175,227).
RGB: (94,175,227) (37%,69%,89%)
R 94 of 255 = 37%
G 175 of 255 = 69%
B 227 of 255 = 89%
R + G + B ~ 65%. #5EAFE3 is quite light color.
R + G + B =
94 + 175 + 227 = 496 (100%)
R 94 of 496 ~ 18.95%
G 175 of 496 ~ 35.28%
B 227 of 496 ~ 45.77%
#5EAFE3 color CMYK value is (59,23,0,11).
CMYK: (59,23,0,11) C59M23Y0K11 (59%,23%,0%,11%) (0.59/0.23/0.00/0.11)
5E | AF | E3 | |
---|---|---|---|
RGB | 94 | 175 | 227 |
HSL | 203° | 70.37% | 62.94% |
HSB/HSV | 203° | 58.59% | 89.02% |
CMYK | 58.59% | 22.91% | 0.00% |
10.98% |
HEX | 5E | AF | E3 |
Decimal | 94 | 175 | 227 |
Binary | 1011110 | 10101111 | 11100011 |
Octal | 136 | 257 | 343 |
Examples of css and html codes for elements with #5EAFE3 color. Also use rgb(94,175,227) instead hex code.
.myTextColor { color: #5EAFE3; }
<p style="color:#5EAFE3">This sample text font color is #5EAFE3.</p>
This text font color is #5EAFE3.
.myBgColor { background-color: #5EAFE3; }
<div style="background-color:#5EAFE3">Inner text</div>
This div background color is #5EAFE3.
.myBorderColor { border: 1px solid #5EAFE3; }
<div style="border:3px solid #5EAFE3">Div</div>
This div border color is #5EAFE3.
.myOpacity80 { color: #5EAFE3; opacity: 0.8; }
<p style="color:#5EAFE3;opacity:0.8;">80%</p>
Text with #5EAFE3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5EAFE3;}
<p style="text-shadow: 3px 3px 1px #5EAFE3">Text here.</p>
This text has shadow with #5EAFE3 color.
.textShadow {text-shadow: 3px 3px 1px #5EAFE3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5EAFE3, 5px 5px 20px red">Text here.</p>
This text has shadow with #5EAFE3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5EAFE3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5EAFE3, Direction=45, Strength=4)">Text</p>
This text has shadow with #5EAFE3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5EAFE3; -webkit-box-shadow: 1px 1px 3px 2px #5EAFE3; box-shadow: 1px 1px 3px 2px #5EAFE3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5EAFE3; -webkit-box-shadow: 1px 1px 3px 2px #5EAFE3; box-shadow:1px 1px 3px 2px #5EAFE3;">
Div content here</div>
This text has color #5EAFE3 on black background.
This text has color #5EAFE3 on white background.
This text has black color on #5EAFE3 background.
This text has white color on #5EAFE3 background.