HEX: #7177BB
RGB: (113,119,187)
#7177BB contains mainly blue color. Web safe color of #7177BB is #6666CC (or #66C).
#7177BB color RGB value is (113,119,187).
RGB: (113,119,187) (44%,47%,73%)
R 113 of 255 = 44%
G 119 of 255 = 47%
B 187 of 255 = 73%
R + G + B ~ 55%. #7177BB is middle color (not dark and not light).
R + G + B =
113 + 119 + 187 = 419 (100%)
R 113 of 419 ~ 26.97%
G 119 of 419 ~ 28.4%
B 187 of 419 ~ 44.63%
#7177BB color CMYK value is (40,36,0,27).
CMYK: (40,36,0,27) C40M36Y0K27 (40%,36%,0%,27%) (0.40/0.36/0.00/0.27)
71 | 77 | BB | |
---|---|---|---|
RGB | 113 | 119 | 187 |
HSL | 235° | 35.24% | 58.82% |
HSB/HSV | 235° | 39.57% | 73.33% |
CMYK | 39.57% | 36.36% | 0.00% |
26.67% |
HEX | 71 | 77 | BB |
Decimal | 113 | 119 | 187 |
Binary | 1110001 | 1110111 | 10111011 |
Octal | 161 | 167 | 273 |
Examples of css and html codes for elements with #7177BB color. Also use rgb(113,119,187) instead hex code.
.myTextColor { color: #7177BB; }
<p style="color:#7177BB">This sample text font color is #7177BB.</p>
This text font color is #7177BB.
.myBgColor { background-color: #7177BB; }
<div style="background-color:#7177BB">Inner text</div>
This div background color is #7177BB.
.myBorderColor { border: 1px solid #7177BB; }
<div style="border:3px solid #7177BB">Div</div>
This div border color is #7177BB.
.myOpacity80 { color: #7177BB; opacity: 0.8; }
<p style="color:#7177BB;opacity:0.8;">80%</p>
Text with #7177BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7177BB;}
<p style="text-shadow: 3px 3px 1px #7177BB">Text here.</p>
This text has shadow with #7177BB color.
.textShadow {text-shadow: 3px 3px 1px #7177BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7177BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7177BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7177BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7177BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7177BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7177BB; -webkit-box-shadow: 1px 1px 3px 2px #7177BB; box-shadow: 1px 1px 3px 2px #7177BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7177BB; -webkit-box-shadow: 1px 1px 3px 2px #7177BB; box-shadow:1px 1px 3px 2px #7177BB;">
Div content here</div>
This text has color #7177BB on black background.
This text has color #7177BB on white background.
This text has black color on #7177BB background.
This text has white color on #7177BB background.