RGB for SEPIA

Hexadecimal to RGB
Color Name
R
G
B
Hexadecimal
SEPIA
112
66
20
#70 42 14
<div style='height: 25px; background-color:#704214' ></div>

Gradient Channels

Gradient
HTML
<div style='height:50px;background-image: linear-gradient(to bottom, white,#704214);'></div>
<div style='height:50px;background-image: linear-gradient(to top, white,#704214);'></div>
<div style='height:50px;background-image: linear-gradient(to left, white,#704214);'></div>
<div style='height:50px;background-image: linear-gradient(to right, white,#704214);'></div>

Usage:

  • We can change color white with any other color to generate our required gradient.
  • HTML is not case sensitive therefore we can use upper as well lower case letters in Hexadecimal codes.
  • Div height may be less or greater than 50px depending on the requirements.
  • If div contains other HTML elements or written contents than there also no need to set height of div tag.
  • A better approach to do this is using CSS class.
  • Such as:
  • < style > 
      .gradientDiv { 
        height: 50px; 
        background-image: linear-gradient(to right, white,#704214); 
      }
    < /style >
  • <div class='gradientDiv'></div>

RGB Channel Detail

31000%
26400%
21800%

CMYK Channel Detail

0%
18%
36%
99%

RGB Variants

Available Variant by Red channel

Available Variant by Green channel

Available Variant by Blue channel

Comments
Login to TRACK of Comments.