HEX: #7B426A
RGB: (123,66,106)
#7B426A contains red, green and blue colors in about the same proportion. Web safe color of #7B426A is #663366 (or #636).
#7B426A color RGB value is (123,66,106).
RGB: (123,66,106) (48%,26%,42%)
R 123 of 255 = 48%
G 66 of 255 = 26%
B 106 of 255 = 42%
R + G + B ~ 39%. #7B426A is quite dark color.
R + G + B =
123 + 66 + 106 = 295 (100%)
R 123 of 295 ~ 41.69%
G 66 of 295 ~ 22.37%
B 106 of 295 ~ 35.93%
#7B426A color CMYK value is (0,46,14,52).
CMYK: (0,46,14,52) C0M46Y14K52 (0%,46%,14%,52%) (0.00/0.46/0.14/0.52)
7B | 42 | 6A | |
---|---|---|---|
RGB | 123 | 66 | 106 |
HSL | 318° | 30.16% | 37.06% |
HSB/HSV | 318° | 46.34% | 48.24% |
CMYK | 0.00% | 46.34% | 13.82% |
51.76% |
HEX | 7B | 42 | 6A |
Decimal | 123 | 66 | 106 |
Binary | 1111011 | 1000010 | 1101010 |
Octal | 173 | 102 | 152 |
Examples of css and html codes for elements with #7B426A color. Also use rgb(123,66,106) instead hex code.
.myTextColor { color: #7B426A; }
<p style="color:#7B426A">This sample text font color is #7B426A.</p>
This text font color is #7B426A.
.myBgColor { background-color: #7B426A; }
<div style="background-color:#7B426A">Inner text</div>
This div background color is #7B426A.
.myBorderColor { border: 1px solid #7B426A; }
<div style="border:3px solid #7B426A">Div</div>
This div border color is #7B426A.
.myOpacity80 { color: #7B426A; opacity: 0.8; }
<p style="color:#7B426A;opacity:0.8;">80%</p>
Text with #7B426A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7B426A;}
<p style="text-shadow: 3px 3px 1px #7B426A">Text here.</p>
This text has shadow with #7B426A color.
.textShadow {text-shadow: 3px 3px 1px #7B426A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7B426A, 5px 5px 20px red">Text here.</p>
This text has shadow with #7B426A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7B426A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7B426A, Direction=45, Strength=4)">Text</p>
This text has shadow with #7B426A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7B426A; -webkit-box-shadow: 1px 1px 3px 2px #7B426A; box-shadow: 1px 1px 3px 2px #7B426A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7B426A; -webkit-box-shadow: 1px 1px 3px 2px #7B426A; box-shadow:1px 1px 3px 2px #7B426A;">
Div content here</div>
This text has color #7B426A on black background.
This text has color #7B426A on white background.
This text has black color on #7B426A background.
This text has white color on #7B426A background.