HEX: #7E81BB
RGB: (126,129,187)
#7E81BB contains mainly green and blue colors. Web safe color of #7E81BB is #6699CC (or #69C).
#7E81BB color RGB value is (126,129,187).
RGB: (126,129,187) (49%,51%,73%)
R 126 of 255 = 49%
G 129 of 255 = 51%
B 187 of 255 = 73%
R + G + B ~ 58%. #7E81BB is middle color (not dark and not light).
R + G + B =
126 + 129 + 187 = 442 (100%)
R 126 of 442 ~ 28.51%
G 129 of 442 ~ 29.19%
B 187 of 442 ~ 42.31%
#7E81BB color CMYK value is (33,31,0,27).
CMYK: (33,31,0,27) C33M31Y0K27 (33%,31%,0%,27%) (0.33/0.31/0.00/0.27)
7E | 81 | BB | |
---|---|---|---|
RGB | 126 | 129 | 187 |
HSL | 237° | 30.96% | 61.37% |
HSB/HSV | 237° | 32.62% | 73.33% |
CMYK | 32.62% | 31.02% | 0.00% |
26.67% |
HEX | 7E | 81 | BB |
Decimal | 126 | 129 | 187 |
Binary | 1111110 | 10000001 | 10111011 |
Octal | 176 | 201 | 273 |
Examples of css and html codes for elements with #7E81BB color. Also use rgb(126,129,187) instead hex code.
.myTextColor { color: #7E81BB; }
<p style="color:#7E81BB">This sample text font color is #7E81BB.</p>
This text font color is #7E81BB.
.myBgColor { background-color: #7E81BB; }
<div style="background-color:#7E81BB">Inner text</div>
This div background color is #7E81BB.
.myBorderColor { border: 1px solid #7E81BB; }
<div style="border:3px solid #7E81BB">Div</div>
This div border color is #7E81BB.
.myOpacity80 { color: #7E81BB; opacity: 0.8; }
<p style="color:#7E81BB;opacity:0.8;">80%</p>
Text with #7E81BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E81BB;}
<p style="text-shadow: 3px 3px 1px #7E81BB">Text here.</p>
This text has shadow with #7E81BB color.
.textShadow {text-shadow: 3px 3px 1px #7E81BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E81BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E81BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E81BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E81BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E81BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E81BB; -webkit-box-shadow: 1px 1px 3px 2px #7E81BB; box-shadow: 1px 1px 3px 2px #7E81BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E81BB; -webkit-box-shadow: 1px 1px 3px 2px #7E81BB; box-shadow:1px 1px 3px 2px #7E81BB;">
Div content here</div>
This text has color #7E81BB on black background.
This text has color #7E81BB on white background.
This text has black color on #7E81BB background.
This text has white color on #7E81BB background.