HEX: #6B857D
RGB: (107,133,125)
#6B857D contains red, green and blue colors in about the same proportion. Web safe color of #6B857D is #669966 (or #696).
#6B857D color RGB value is (107,133,125).
RGB: (107,133,125) (42%,52%,49%)
R 107 of 255 = 42%
G 133 of 255 = 52%
B 125 of 255 = 49%
R + G + B ~ 48%. #6B857D is middle color (not dark and not light).
R + G + B =
107 + 133 + 125 = 365 (100%)
R 107 of 365 ~ 29.32%
G 133 of 365 ~ 36.44%
B 125 of 365 ~ 34.25%
#6B857D color CMYK value is (20,0,6,48).
CMYK: (20,0,6,48) C20M0Y6K48 (20%,0%,6%,48%) (0.20/0.00/0.06/0.48)
6B | 85 | 7D | |
---|---|---|---|
RGB | 107 | 133 | 125 |
HSL | 162° | 10.83% | 47.06% |
HSB/HSV | 162° | 19.55% | 52.16% |
CMYK | 19.55% | 0.00% | 6.02% |
47.84% |
HEX | 6B | 85 | 7D |
Decimal | 107 | 133 | 125 |
Binary | 1101011 | 10000101 | 1111101 |
Octal | 153 | 205 | 175 |
Examples of css and html codes for elements with #6B857D color. Also use rgb(107,133,125) instead hex code.
.myTextColor { color: #6B857D; }
<p style="color:#6B857D">This sample text font color is #6B857D.</p>
This text font color is #6B857D.
.myBgColor { background-color: #6B857D; }
<div style="background-color:#6B857D">Inner text</div>
This div background color is #6B857D.
.myBorderColor { border: 1px solid #6B857D; }
<div style="border:3px solid #6B857D">Div</div>
This div border color is #6B857D.
.myOpacity80 { color: #6B857D; opacity: 0.8; }
<p style="color:#6B857D;opacity:0.8;">80%</p>
Text with #6B857D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B857D;}
<p style="text-shadow: 3px 3px 1px #6B857D">Text here.</p>
This text has shadow with #6B857D color.
.textShadow {text-shadow: 3px 3px 1px #6B857D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B857D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B857D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B857D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B857D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B857D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B857D; -webkit-box-shadow: 1px 1px 3px 2px #6B857D; box-shadow: 1px 1px 3px 2px #6B857D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B857D; -webkit-box-shadow: 1px 1px 3px 2px #6B857D; box-shadow:1px 1px 3px 2px #6B857D;">
Div content here</div>
This text has color #6B857D on black background.
This text has color #6B857D on white background.
This text has black color on #6B857D background.
This text has white color on #6B857D background.