HEX: #4B61EC
RGB: (75,97,236)
#4B61EC contains mainly blue color. Web safe color of #4B61EC is #3366FF (or #36F).
#4B61EC color RGB value is (75,97,236).
RGB: (75,97,236) (29%,38%,93%)
R 75 of 255 = 29%
G 97 of 255 = 38%
B 236 of 255 = 93%
R + G + B ~ 53%. #4B61EC is middle color (not dark and not light).
R + G + B =
75 + 97 + 236 = 408 (100%)
R 75 of 408 ~ 18.38%
G 97 of 408 ~ 23.77%
B 236 of 408 ~ 57.84%
#4B61EC color CMYK value is (68,59,0,7).
CMYK: (68,59,0,7) C68M59Y0K7 (68%,59%,0%,7%) (0.68/0.59/0.00/0.07)
4B | 61 | EC | |
---|---|---|---|
RGB | 75 | 97 | 236 |
HSL | 232° | 80.90% | 60.98% |
HSB/HSV | 232° | 68.22% | 92.55% |
CMYK | 68.22% | 58.90% | 0.00% |
7.45% |
HEX | 4B | 61 | EC |
Decimal | 75 | 97 | 236 |
Binary | 1001011 | 1100001 | 11101100 |
Octal | 113 | 141 | 354 |
Examples of css and html codes for elements with #4B61EC color. Also use rgb(75,97,236) instead hex code.
.myTextColor { color: #4B61EC; }
<p style="color:#4B61EC">This sample text font color is #4B61EC.</p>
This text font color is #4B61EC.
.myBgColor { background-color: #4B61EC; }
<div style="background-color:#4B61EC">Inner text</div>
This div background color is #4B61EC.
.myBorderColor { border: 1px solid #4B61EC; }
<div style="border:3px solid #4B61EC">Div</div>
This div border color is #4B61EC.
.myOpacity80 { color: #4B61EC; opacity: 0.8; }
<p style="color:#4B61EC;opacity:0.8;">80%</p>
Text with #4B61EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4B61EC;}
<p style="text-shadow: 3px 3px 1px #4B61EC">Text here.</p>
This text has shadow with #4B61EC color.
.textShadow {text-shadow: 3px 3px 1px #4B61EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4B61EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #4B61EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4B61EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4B61EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #4B61EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4B61EC; -webkit-box-shadow: 1px 1px 3px 2px #4B61EC; box-shadow: 1px 1px 3px 2px #4B61EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4B61EC; -webkit-box-shadow: 1px 1px 3px 2px #4B61EC; box-shadow:1px 1px 3px 2px #4B61EC;">
Div content here</div>
This text has color #4B61EC on black background.
This text has color #4B61EC on white background.
This text has black color on #4B61EC background.
This text has white color on #4B61EC background.