HEX: #77A2EC
RGB: (119,162,236)
#77A2EC contains mainly blue color. Web safe color of #77A2EC is #6699FF (or #69F).
#77A2EC color RGB value is (119,162,236).
RGB: (119,162,236) (47%,64%,93%)
R 119 of 255 = 47%
G 162 of 255 = 64%
B 236 of 255 = 93%
R + G + B ~ 68%. #77A2EC is quite light color.
R + G + B =
119 + 162 + 236 = 517 (100%)
R 119 of 517 ~ 23.02%
G 162 of 517 ~ 31.33%
B 236 of 517 ~ 45.65%
#77A2EC color CMYK value is (50,31,0,7).
CMYK: (50,31,0,7) C50M31Y0K7 (50%,31%,0%,7%) (0.50/0.31/0.00/0.07)
77 | A2 | EC | |
---|---|---|---|
RGB | 119 | 162 | 236 |
HSL | 218° | 75.48% | 69.61% |
HSB/HSV | 218° | 49.58% | 92.55% |
CMYK | 49.58% | 31.36% | 0.00% |
7.45% |
HEX | 77 | A2 | EC |
Decimal | 119 | 162 | 236 |
Binary | 1110111 | 10100010 | 11101100 |
Octal | 167 | 242 | 354 |
Examples of css and html codes for elements with #77A2EC color. Also use rgb(119,162,236) instead hex code.
.myTextColor { color: #77A2EC; }
<p style="color:#77A2EC">This sample text font color is #77A2EC.</p>
This text font color is #77A2EC.
.myBgColor { background-color: #77A2EC; }
<div style="background-color:#77A2EC">Inner text</div>
This div background color is #77A2EC.
.myBorderColor { border: 1px solid #77A2EC; }
<div style="border:3px solid #77A2EC">Div</div>
This div border color is #77A2EC.
.myOpacity80 { color: #77A2EC; opacity: 0.8; }
<p style="color:#77A2EC;opacity:0.8;">80%</p>
Text with #77A2EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77A2EC;}
<p style="text-shadow: 3px 3px 1px #77A2EC">Text here.</p>
This text has shadow with #77A2EC color.
.textShadow {text-shadow: 3px 3px 1px #77A2EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77A2EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #77A2EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77A2EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77A2EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #77A2EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77A2EC; -webkit-box-shadow: 1px 1px 3px 2px #77A2EC; box-shadow: 1px 1px 3px 2px #77A2EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77A2EC; -webkit-box-shadow: 1px 1px 3px 2px #77A2EC; box-shadow:1px 1px 3px 2px #77A2EC;">
Div content here</div>
This text has color #77A2EC on black background.
This text has color #77A2EC on white background.
This text has black color on #77A2EC background.
This text has white color on #77A2EC background.