HEX: #76A0BE
RGB: (118,160,190)
#76A0BE contains mainly green and blue colors. Web safe color of #76A0BE is #6699CC (or #69C).
#76A0BE color RGB value is (118,160,190).
RGB: (118,160,190) (46%,63%,75%)
R 118 of 255 = 46%
G 160 of 255 = 63%
B 190 of 255 = 75%
R + G + B ~ 61%. #76A0BE is quite light color.
R + G + B =
118 + 160 + 190 = 468 (100%)
R 118 of 468 ~ 25.21%
G 160 of 468 ~ 34.19%
B 190 of 468 ~ 40.6%
#76A0BE color CMYK value is (38,16,0,25).
CMYK: (38,16,0,25) C38M16Y0K25 (38%,16%,0%,25%) (0.38/0.16/0.00/0.25)
76 | A0 | BE | |
---|---|---|---|
RGB | 118 | 160 | 190 |
HSL | 205° | 35.64% | 60.39% |
HSB/HSV | 205° | 37.89% | 74.51% |
CMYK | 37.89% | 15.79% | 0.00% |
25.49% |
HEX | 76 | A0 | BE |
Decimal | 118 | 160 | 190 |
Binary | 1110110 | 10100000 | 10111110 |
Octal | 166 | 240 | 276 |
Examples of css and html codes for elements with #76A0BE color. Also use rgb(118,160,190) instead hex code.
.myTextColor { color: #76A0BE; }
<p style="color:#76A0BE">This sample text font color is #76A0BE.</p>
This text font color is #76A0BE.
.myBgColor { background-color: #76A0BE; }
<div style="background-color:#76A0BE">Inner text</div>
This div background color is #76A0BE.
.myBorderColor { border: 1px solid #76A0BE; }
<div style="border:3px solid #76A0BE">Div</div>
This div border color is #76A0BE.
.myOpacity80 { color: #76A0BE; opacity: 0.8; }
<p style="color:#76A0BE;opacity:0.8;">80%</p>
Text with #76A0BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76A0BE;}
<p style="text-shadow: 3px 3px 1px #76A0BE">Text here.</p>
This text has shadow with #76A0BE color.
.textShadow {text-shadow: 3px 3px 1px #76A0BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76A0BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #76A0BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76A0BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76A0BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #76A0BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76A0BE; -webkit-box-shadow: 1px 1px 3px 2px #76A0BE; box-shadow: 1px 1px 3px 2px #76A0BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76A0BE; -webkit-box-shadow: 1px 1px 3px 2px #76A0BE; box-shadow:1px 1px 3px 2px #76A0BE;">
Div content here</div>
This text has color #76A0BE on black background.
This text has color #76A0BE on white background.
This text has black color on #76A0BE background.
This text has white color on #76A0BE background.