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