HEX: #6B768B
RGB: (107,118,139)
#6B768B contains red, green and blue colors in about the same proportion. Web safe color of #6B768B is #666699 (or #669).
#6B768B color RGB value is (107,118,139).
RGB: (107,118,139) (42%,46%,55%)
R 107 of 255 = 42%
G 118 of 255 = 46%
B 139 of 255 = 55%
R + G + B ~ 48%. #6B768B is middle color (not dark and not light).
R + G + B =
107 + 118 + 139 = 364 (100%)
R 107 of 364 ~ 29.4%
G 118 of 364 ~ 32.42%
B 139 of 364 ~ 38.19%
#6B768B color CMYK value is (23,15,0,45).
CMYK: (23,15,0,45) C23M15Y0K45 (23%,15%,0%,45%) (0.23/0.15/0.00/0.45)
6B | 76 | 8B | |
---|---|---|---|
RGB | 107 | 118 | 139 |
HSL | 219° | 13.01% | 48.24% |
HSB/HSV | 219° | 23.02% | 54.51% |
CMYK | 23.02% | 15.11% | 0.00% |
45.49% |
HEX | 6B | 76 | 8B |
Decimal | 107 | 118 | 139 |
Binary | 1101011 | 1110110 | 10001011 |
Octal | 153 | 166 | 213 |
Examples of css and html codes for elements with #6B768B color. Also use rgb(107,118,139) instead hex code.
.myTextColor { color: #6B768B; }
<p style="color:#6B768B">This sample text font color is #6B768B.</p>
This text font color is #6B768B.
.myBgColor { background-color: #6B768B; }
<div style="background-color:#6B768B">Inner text</div>
This div background color is #6B768B.
.myBorderColor { border: 1px solid #6B768B; }
<div style="border:3px solid #6B768B">Div</div>
This div border color is #6B768B.
.myOpacity80 { color: #6B768B; opacity: 0.8; }
<p style="color:#6B768B;opacity:0.8;">80%</p>
Text with #6B768B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B768B;}
<p style="text-shadow: 3px 3px 1px #6B768B">Text here.</p>
This text has shadow with #6B768B color.
.textShadow {text-shadow: 3px 3px 1px #6B768B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B768B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B768B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B768B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B768B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B768B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B768B; -webkit-box-shadow: 1px 1px 3px 2px #6B768B; box-shadow: 1px 1px 3px 2px #6B768B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B768B; -webkit-box-shadow: 1px 1px 3px 2px #6B768B; box-shadow:1px 1px 3px 2px #6B768B;">
Div content here</div>
This text has color #6B768B on black background.
This text has color #6B768B on white background.
This text has black color on #6B768B background.
This text has white color on #6B768B background.