HEX: #749CE6
RGB: (116,156,230)
#749CE6 contains mainly blue color. Web safe color of #749CE6 is #6699CC (or #69C).
#749CE6 color RGB value is (116,156,230).
RGB: (116,156,230) (45%,61%,90%)
R 116 of 255 = 45%
G 156 of 255 = 61%
B 230 of 255 = 90%
R + G + B ~ 65%. #749CE6 is quite light color.
R + G + B =
116 + 156 + 230 = 502 (100%)
R 116 of 502 ~ 23.11%
G 156 of 502 ~ 31.08%
B 230 of 502 ~ 45.82%
#749CE6 color CMYK value is (50,32,0,10).
CMYK: (50,32,0,10) C50M32Y0K10 (50%,32%,0%,10%) (0.50/0.32/0.00/0.10)
74 | 9C | E6 | |
---|---|---|---|
RGB | 116 | 156 | 230 |
HSL | 219° | 69.51% | 67.84% |
HSB/HSV | 219° | 49.57% | 90.20% |
CMYK | 49.57% | 32.17% | 0.00% |
9.80% |
HEX | 74 | 9C | E6 |
Decimal | 116 | 156 | 230 |
Binary | 1110100 | 10011100 | 11100110 |
Octal | 164 | 234 | 346 |
Examples of css and html codes for elements with #749CE6 color. Also use rgb(116,156,230) instead hex code.
.myTextColor { color: #749CE6; }
<p style="color:#749CE6">This sample text font color is #749CE6.</p>
This text font color is #749CE6.
.myBgColor { background-color: #749CE6; }
<div style="background-color:#749CE6">Inner text</div>
This div background color is #749CE6.
.myBorderColor { border: 1px solid #749CE6; }
<div style="border:3px solid #749CE6">Div</div>
This div border color is #749CE6.
.myOpacity80 { color: #749CE6; opacity: 0.8; }
<p style="color:#749CE6;opacity:0.8;">80%</p>
Text with #749CE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #749CE6;}
<p style="text-shadow: 3px 3px 1px #749CE6">Text here.</p>
This text has shadow with #749CE6 color.
.textShadow {text-shadow: 3px 3px 1px #749CE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #749CE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #749CE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#749CE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#749CE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #749CE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #749CE6; -webkit-box-shadow: 1px 1px 3px 2px #749CE6; box-shadow: 1px 1px 3px 2px #749CE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #749CE6; -webkit-box-shadow: 1px 1px 3px 2px #749CE6; box-shadow:1px 1px 3px 2px #749CE6;">
Div content here</div>
This text has color #749CE6 on black background.
This text has color #749CE6 on white background.
This text has black color on #749CE6 background.
This text has white color on #749CE6 background.