HEX: #7B627A
RGB: (123,98,122)
#7B627A contains red, green and blue colors in about the same proportion. Web safe color of #7B627A is #666666 (or #666).
#7B627A color RGB value is (123,98,122).
RGB: (123,98,122) (48%,38%,48%)
R 123 of 255 = 48%
G 98 of 255 = 38%
B 122 of 255 = 48%
R + G + B ~ 45%. #7B627A is middle color (not dark and not light).
R + G + B =
123 + 98 + 122 = 343 (100%)
R 123 of 343 ~ 35.86%
G 98 of 343 ~ 28.57%
B 122 of 343 ~ 35.57%
#7B627A color CMYK value is (0,20,1,52).
CMYK: (0,20,1,52) C0M20Y1K52 (0%,20%,1%,52%) (0.00/0.20/0.01/0.52)
7B | 62 | 7A | |
---|---|---|---|
RGB | 123 | 98 | 122 |
HSL | 302° | 11.31% | 43.33% |
HSB/HSV | 302° | 20.33% | 48.24% |
CMYK | 0.00% | 20.33% | 0.81% |
51.76% |
HEX | 7B | 62 | 7A |
Decimal | 123 | 98 | 122 |
Binary | 1111011 | 1100010 | 1111010 |
Octal | 173 | 142 | 172 |
Examples of css and html codes for elements with #7B627A color. Also use rgb(123,98,122) instead hex code.
.myTextColor { color: #7B627A; }
<p style="color:#7B627A">This sample text font color is #7B627A.</p>
This text font color is #7B627A.
.myBgColor { background-color: #7B627A; }
<div style="background-color:#7B627A">Inner text</div>
This div background color is #7B627A.
.myBorderColor { border: 1px solid #7B627A; }
<div style="border:3px solid #7B627A">Div</div>
This div border color is #7B627A.
.myOpacity80 { color: #7B627A; opacity: 0.8; }
<p style="color:#7B627A;opacity:0.8;">80%</p>
Text with #7B627A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7B627A;}
<p style="text-shadow: 3px 3px 1px #7B627A">Text here.</p>
This text has shadow with #7B627A color.
.textShadow {text-shadow: 3px 3px 1px #7B627A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7B627A, 5px 5px 20px red">Text here.</p>
This text has shadow with #7B627A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7B627A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7B627A, Direction=45, Strength=4)">Text</p>
This text has shadow with #7B627A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7B627A; -webkit-box-shadow: 1px 1px 3px 2px #7B627A; box-shadow: 1px 1px 3px 2px #7B627A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7B627A; -webkit-box-shadow: 1px 1px 3px 2px #7B627A; box-shadow:1px 1px 3px 2px #7B627A;">
Div content here</div>
This text has color #7B627A on black background.
This text has color #7B627A on white background.
This text has black color on #7B627A background.
This text has white color on #7B627A background.