Color Shades

Generate shades from light to dark for any color

Color Shade Generator

Shades are created by adding white (lightening) or black (darkening) to a base color. This is fundamental for creating depth, hover states, and visual hierarchy in web design.

๐ŸŽจ
Tint = base color + white (lighter). Shade = base color + black (darker). Together they create a complete tonal palette from a single color.
HSL: 204ยฐ, 70%, 53%

Lighter Tints

#48A2DF
+10% lighter
#5DADE2
+20% lighter
#71B7E6
+30% lighter
#85C1E9
+40% lighter
#9ACCED
+50% lighter
#AED6F1
+60% lighter
#C2E0F4
+70% lighter
#D6EAF8
+80% lighter
#EBF5FB
+90% lighter

Base Color

#3498DB

Darker Shades

#2F89C5
-10% darker
#2A7AAF
-20% darker
#246A99
-30% darker
#1F5B83
-40% darker
#1A4C6E
-50% darker
#153D58
-60% darker
#102E42
-70% darker
#0A1E2C
-80% darker
#050F16
-90% darker

Using Shades in CSS

A well-defined shade palette helps create consistent designs. Here's how you might use shades as CSS custom properties:

CSS Custom Properties
:root {
  --primary-100: #D6EAF8;
  --primary-200: #AED6F1;
  --primary-300: #85C1E9;
  --primary-400: #5DADE2;
  --primary-500: #3498DB;
  --primary-600: #2A7AAF;
  --primary-700: #1F5B83;
  --primary-800: #153D58;
  --primary-900: #0A1E2C;
}

.btn-primary {
  background: var(--primary-500);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-600);
}
100#D6EAF8
125#AED6F1
150#85C1E9
175#5DADE2
500#3498DB
625#2A7AAF
750#1F5B83
875#153D58
1000#0A1E2C
๐ŸŽฏ
Design Tip: Most design systems use a 9-step shade scale (100โ€“900). The middle value (500) is the base color, lighter tints go down (100โ€“400), and darker shades go up (600โ€“900).

How to Use Color Shades?

  1. 1Choose a base color using the interactive picker or enter HEX, RGB, HSL values.
  2. 2Generate matching color palettes, schemes, or color space transformations instantly.
  3. 3Click on any color code block in the results to copy it instantly to your clipboard.

Designer Friendly

Easily match colors, check contrast ratios, and generate custom palettes for your designs.

Multi-Format Support

Supports copy-paste in HEX, RGB, RGBA, HSL, HSLA, and CSS variables formats.

Runs Locally

No internet connection required. Our color engines run instantly and cleanly inside your web browser.

Frequently Asked Questions

Is Color Shades free to use?โ–ผ
Yes, Color Shades is 100% free with no hidden charges, premium subscriptions, or limits. You can use it as much as you need.
How does the Color Shades tool work?โ–ผ
Generate shades from light to dark for any color All operations are processed entirely inside your web browser using HTML5 features. Your files or input data are never uploaded to any server.
Is my data secure with Color Shades?โ–ผ
Absolutely. Since the processing runs client-side in your own browser, your data never leaves your device. This makes it completely secure and private.