HSL(30, 60%, 30%)
Orange — Orange color
Adjust Color
Color Information
Color Name
Orange
Color Family
Orange
Warm / Cool
🔴 Warm
Temperature
2700K
CSS Class
bg-[hsl(30,60%,30%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(30, 60%, 30%) | color: hsl(30, 60%, 30%) | |
| HEX | #7A4D1F | color: #7A4D1F | |
| RGB | rgb(122, 77, 31) | color: rgb(122, 77, 31) | |
| CMYK | cmyk(0%, 37%, 75%, 52%) | — | |
| HSV | hsv(30, 75%, 48%) | — | |
| HWB | hwb(30 12% 52%) | color: hwb(30 12% 52%) | |
| OKLCH | oklch(0.4624 0.0857 63.16) | color: oklch(0.4624 0.0857 63.16) | |
| Lab | lab(37.01 14.62 34.08) | color: lab(37.01 14.62 34.08) | |
| LCH | lch(37.01 37.08 66.78) | color: lch(37.01 37.08 66.78) |
Color Theory
Accessibility (WCAG)
White text on color
Black text on color
Colored text
Contrast Ratios
AA Normal (4.5:1)
AA Large (3:1)
AAA Normal (7:1)
Best text on this color: white
Color Blindness Simulation
Protanopia (Red-blind)
#67662A — rgb(103, 102, 42)
Deuteranopia (Green-blind)
#696D2D — rgb(105, 109, 45)
Tritanopia (Blue-blind)
#783335 — rgb(120, 51, 53)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(30, 60%, 30%);
text
color: hsl(30, 60%, 30%);
border
border: 2px solid hsl(30, 60%, 30%);
gradient light
background: linear-gradient(to right, hsl(30, 60%, 50%), hsl(30, 60%, 30%));
gradient dark
background: linear-gradient(to right, hsl(30, 60%, 30%), hsl(30, 60%, 10%))
hex
background-color: #7A4D1F;
tailwind
bg-[hsl(30,60%,30%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(30, 60%, 30%, 0.4);
css variable
--color-primary: hsl(30, 60%, 30%);
Related Colors
Use Cases for Orange
Frequently Asked Questions
What are all the color codes for HSL(30, 60%, 30%)?
HEX: #7A4D1F | RGB: rgb(122, 77, 31) | CMYK: 0%, 37%, 75%, 52% | HSV: 30°, 75%, 48%. Copy any format from the conversion table above.
What colors go well with #7A4D1F?
The complementary color is HSL(210, 60%, 30%). For a triadic harmony, use hues 30°, 150°, and 270°. For analogous combinations, try hues 0° and 60°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(30, 60%, 30%) in CSS?
As HSL: color: hsl(30, 60%, 30%); — As HEX: color: #7A4D1F; — As RGB: color: rgb(122, 77, 31); — Tailwind CSS: bg-[hsl(30,60%,30%)] — CSS variable: --color-primary: hsl(30, 60%, 30%);