HEX: #6F487B
RGB: (111,72,123)
#6F487B contains red, green and blue colors in about the same proportion. Web safe color of #6F487B is #663366 (or #636).
#6F487B color RGB value is (111,72,123).
RGB: (111,72,123) (44%,28%,48%)
R 111 of 255 = 44%
G 72 of 255 = 28%
B 123 of 255 = 48%
R + G + B ~ 40%. #6F487B is middle color (not dark and not light).
R + G + B =
111 + 72 + 123 = 306 (100%)
R 111 of 306 ~ 36.27%
G 72 of 306 ~ 23.53%
B 123 of 306 ~ 40.2%
#6F487B color CMYK value is (10,41,0,52).
CMYK: (10,41,0,52) C10M41Y0K52 (10%,41%,0%,52%) (0.10/0.41/0.00/0.52)
6F | 48 | 7B | |
---|---|---|---|
RGB | 111 | 72 | 123 |
HSL | 286° | 26.15% | 38.24% |
HSB/HSV | 286° | 41.46% | 48.24% |
CMYK | 9.76% | 41.46% | 0.00% |
51.76% |
HEX | 6F | 48 | 7B |
Decimal | 111 | 72 | 123 |
Binary | 1101111 | 1001000 | 1111011 |
Octal | 157 | 110 | 173 |
Examples of css and html codes for elements with #6F487B color. Also use rgb(111,72,123) instead hex code.
.myTextColor { color: #6F487B; }
<p style="color:#6F487B">This sample text font color is #6F487B.</p>
This text font color is #6F487B.
.myBgColor { background-color: #6F487B; }
<div style="background-color:#6F487B">Inner text</div>
This div background color is #6F487B.
.myBorderColor { border: 1px solid #6F487B; }
<div style="border:3px solid #6F487B">Div</div>
This div border color is #6F487B.
.myOpacity80 { color: #6F487B; opacity: 0.8; }
<p style="color:#6F487B;opacity:0.8;">80%</p>
Text with #6F487B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6F487B;}
<p style="text-shadow: 3px 3px 1px #6F487B">Text here.</p>
This text has shadow with #6F487B color.
.textShadow {text-shadow: 3px 3px 1px #6F487B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6F487B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6F487B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6F487B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6F487B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6F487B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6F487B; -webkit-box-shadow: 1px 1px 3px 2px #6F487B; box-shadow: 1px 1px 3px 2px #6F487B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6F487B; -webkit-box-shadow: 1px 1px 3px 2px #6F487B; box-shadow:1px 1px 3px 2px #6F487B;">
Div content here</div>
This text has color #6F487B on black background.
This text has color #6F487B on white background.
This text has black color on #6F487B background.
This text has white color on #6F487B background.