HEX: #7F77BE
RGB: (127,119,190)
#7F77BE contains mainly blue color. Web safe color of #7F77BE is #6666CC (or #66C).
#7F77BE color RGB value is (127,119,190).
RGB: (127,119,190) (50%,47%,75%)
R 127 of 255 = 50%
G 119 of 255 = 47%
B 190 of 255 = 75%
R + G + B ~ 57%. #7F77BE is middle color (not dark and not light).
R + G + B =
127 + 119 + 190 = 436 (100%)
R 127 of 436 ~ 29.13%
G 119 of 436 ~ 27.29%
B 190 of 436 ~ 43.58%
#7F77BE color CMYK value is (33,37,0,25).
CMYK: (33,37,0,25) C33M37Y0K25 (33%,37%,0%,25%) (0.33/0.37/0.00/0.25)
7F | 77 | BE | |
---|---|---|---|
RGB | 127 | 119 | 190 |
HSL | 247° | 35.32% | 60.59% |
HSB/HSV | 247° | 37.37% | 74.51% |
CMYK | 33.16% | 37.37% | 0.00% |
25.49% |
HEX | 7F | 77 | BE |
Decimal | 127 | 119 | 190 |
Binary | 1111111 | 1110111 | 10111110 |
Octal | 177 | 167 | 276 |
Examples of css and html codes for elements with #7F77BE color. Also use rgb(127,119,190) instead hex code.
.myTextColor { color: #7F77BE; }
<p style="color:#7F77BE">This sample text font color is #7F77BE.</p>
This text font color is #7F77BE.
.myBgColor { background-color: #7F77BE; }
<div style="background-color:#7F77BE">Inner text</div>
This div background color is #7F77BE.
.myBorderColor { border: 1px solid #7F77BE; }
<div style="border:3px solid #7F77BE">Div</div>
This div border color is #7F77BE.
.myOpacity80 { color: #7F77BE; opacity: 0.8; }
<p style="color:#7F77BE;opacity:0.8;">80%</p>
Text with #7F77BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7F77BE;}
<p style="text-shadow: 3px 3px 1px #7F77BE">Text here.</p>
This text has shadow with #7F77BE color.
.textShadow {text-shadow: 3px 3px 1px #7F77BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7F77BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7F77BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7F77BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7F77BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7F77BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7F77BE; -webkit-box-shadow: 1px 1px 3px 2px #7F77BE; box-shadow: 1px 1px 3px 2px #7F77BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7F77BE; -webkit-box-shadow: 1px 1px 3px 2px #7F77BE; box-shadow:1px 1px 3px 2px #7F77BE;">
Div content here</div>
This text has color #7F77BE on black background.
This text has color #7F77BE on white background.
This text has black color on #7F77BE background.
This text has white color on #7F77BE background.