HEX: #3688ED
RGB: (54,136,237)
#3688ED contains mainly blue color. Web safe color of #3688ED is #3399FF (or #39F).
#3688ED color RGB value is (54,136,237).
RGB: (54,136,237) (21%,53%,93%)
R 54 of 255 = 21%
G 136 of 255 = 53%
B 237 of 255 = 93%
R + G + B ~ 56%. #3688ED is middle color (not dark and not light).
R + G + B =
54 + 136 + 237 = 427 (100%)
R 54 of 427 ~ 12.65%
G 136 of 427 ~ 31.85%
B 237 of 427 ~ 55.5%
#3688ED color CMYK value is (77,43,0,7).
CMYK: (77,43,0,7) C77M43Y0K7 (77%,43%,0%,7%) (0.77/0.43/0.00/0.07)
36 | 88 | ED | |
---|---|---|---|
RGB | 54 | 136 | 237 |
HSL | 213° | 83.56% | 57.06% |
HSB/HSV | 213° | 77.22% | 92.94% |
CMYK | 77.22% | 42.62% | 0.00% |
7.06% |
HEX | 36 | 88 | ED |
Decimal | 54 | 136 | 237 |
Binary | 110110 | 10001000 | 11101101 |
Octal | 66 | 210 | 355 |
Examples of css and html codes for elements with #3688ED color. Also use rgb(54,136,237) instead hex code.
.myTextColor { color: #3688ED; }
<p style="color:#3688ED">This sample text font color is #3688ED.</p>
This text font color is #3688ED.
.myBgColor { background-color: #3688ED; }
<div style="background-color:#3688ED">Inner text</div>
This div background color is #3688ED.
.myBorderColor { border: 1px solid #3688ED; }
<div style="border:3px solid #3688ED">Div</div>
This div border color is #3688ED.
.myOpacity80 { color: #3688ED; opacity: 0.8; }
<p style="color:#3688ED;opacity:0.8;">80%</p>
Text with #3688ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #3688ED;}
<p style="text-shadow: 3px 3px 1px #3688ED">Text here.</p>
This text has shadow with #3688ED color.
.textShadow {text-shadow: 3px 3px 1px #3688ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #3688ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #3688ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#3688ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#3688ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #3688ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #3688ED; -webkit-box-shadow: 1px 1px 3px 2px #3688ED; box-shadow: 1px 1px 3px 2px #3688ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #3688ED; -webkit-box-shadow: 1px 1px 3px 2px #3688ED; box-shadow:1px 1px 3px 2px #3688ED;">
Div content here</div>
This text has color #3688ED on black background.
This text has color #3688ED on white background.
This text has black color on #3688ED background.
This text has white color on #3688ED background.