Quora Hex Color
#B92B27
(185, 43, 39)
Quora (or 0xB92B27), RGB value is (185, 43, 39). This html color code is also a web safe color which is equal to CC3333. Quora hex color red value is 185, green value is 43 and the blue value of its RGB is 39. Cylindrical-coordinate representations (also known as HSL) of color Quora hue: 1.6438356164384, saturation: 65.178571428571 and the lightness value of Quora is 43.921568627451.
Color spaces of Quora
RGB | 185 | 43 | 39 |
---|---|---|---|
HSL | 1.6438356164384 | 65.18% | 43.92% |
HSV | 2° | 79° | 73° |
CMYK | 0.00 | 0.77 | 0.79 0.27 |
XYZ | 21.2377 | 12.1885 | 3.1527 |
Yxy | 12.1885 | 0.5806 | 0.3332 |
CIELCh | 41.5142 | 67.1215 | 34.2205 |
CIE-Lab | 41.5142 | 55.5014 | 37.7477 |
Base Numbers
Base | Red | Green | Blue |
---|---|---|---|
Binary | 10111001 | 101011 | 100111 |
Octal | 271 | 53 | 47 |
Decimal | 185 | 43 | 39 |
Hex | B9 | 2B | 27 |
Analogous of Quora
These colors are all close to each other on a color wheel.
Triad of Quora
These colors are all equally distanced from each other on a color wheel, 2 of which have an alternate shade.
Tetrad of Quora
3 of these colors are all equally distanced from each other on a color wheel, plus 1 alternated shade for the base color and the 1 color that is opposite of the base color.
Weighted Tetrad of Quora
3 of these colors are all similarly distanced from each other on a color wheel, the base color has an alternate shade, and there is a weighted opposite color. These colors are all slightly closer to the base color than in a normal tetrad.
Compound of Quora
These colors use mathematical offsets that usually complement each other well, and can highlight the base color.
Quora CSS Color Codes
.mybgcolor {background-color:#B92B27; } .myforecolor {color:#B92B27; } .mybordercolor {border:3px solid #B92B27;}
Quora Text Font Color
<p style="color:#B92B27">Text here</p>
This sample text font color is #B92B27
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Quora Background Color
<div style="background-color:#B92B27">
Div content here</div>
This div background color is #B92B27
Quora Border Color
<div style="border:3px solid #B92B27">
Div here</div>
This div border color is #B92B27
Css3 Examples
.textShadowRgb { text-shadow: 4px 4px 2px rgba(185, 43, 39, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #B92B27}; } .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B92B27; -webkit-box-shadow: 1px 1px 3px 2px #B92B27; box-shadow: 1px 1px 3px 2px #B92B27}; }
Text Shadow with RGB Values
<p style="text-shadow: 4px 4px 2px rgba(185, 43, 39, 0.8);">Text here</p>
This text has shadow with rgb values.
Text Shadow with Hex Values
<p style="text-shadow: 4px 4px 2px #B92B27">Text here</p>
This text has shadow with hex values.
Div Box Shadow
<div style="-moz-box-shadow: 1px 1px 3px 2px #B92B27; -webkit-box-shadow: 1px 1px 3px 2px #B92B27; box-shadow: 1px 1px 3px 2px #B92B27;">
Div content here</div>
This div box has shadow with color #B92B27