CHAPTER 17
Beginner
Advanced Color Techniques
Updated: May 16, 2026
30 min read
# CHAPTER 17
Advanced Color Techniques
1. Introduction
A junior designer builds a UI card by placing a gray box over a white background and adding a heavy, pure black drop shadow. It looks flat, muddy, and cheap. A senior designer builds the exact same card, but their card looks like it is physically floating in mid-air, bathed in soft, natural light. The difference is not the layout; it is the mastery of Advanced Color Techniques. In this chapter, we will push beyond flat HEX codes. We will explore the Z-axis of color, mastering Alpha Transparency to create subtle overlays, engineering "Colored Drop Shadows" to mimic photorealistic light bleed, and utilizing Layer Blending Modes to generate complex, premium visual textures.2. Learning Objectives
By the end of this chapter, you will be able to:- Manipulate Alpha (Opacity) mathematically to create subtle depth.
- Engineer "Colored Drop Shadows" to create glowing, realistic UI elements.
- Utilize Figma's Layer Blending Modes (Multiply, Screen, Overlay).
- Understand how light interacts with overlapping translucent colors in UI.
- Execute the "Soft UI" aesthetic without relying on massive, ugly black shadows.
3. Mastering Alpha Transparency (Opacity)
Opacity is the measure of how "see-through" a color is.- The Flat Mistake: If you need a light blue background for a notification banner, a beginner picks a light blue HEX code from the color picker. It looks fine, but it is rigid.
-
The Alpha Pro-Trick: Instead of a solid light blue, the pro uses the Primary Brand Blue (
#2563EB) but drops the Fill Opacity to 10%.
4. Engineering Colored Drop Shadows
In the physical world, shadows are not pure black. If a bright blue neon sign casts a shadow against a white wall, the shadow is tinted blue (light bleed). How to create a Premium Glow Effect:-
1.
Draw a Primary Button. Fill: Vibrant Blue (
#3B82F6).
-
2.
Add a Drop Shadow in Figma (
Y: 8, Blur: 16).
-
3.
*The Trick:* Do NOT leave the shadow color as Black (
#000000). Click the shadow color and change it to the exact same Blue (#3B82F6).
-
4.
Lower the shadow's Opacity to
30%.
5. Layer Blending Modes
If you have ever used Photoshop, you know Blending Modes. Figma has them too (found in the Right Panel under the "Fill" opacity settings: the teardrop/overlap icon). Blending modes change the math of how a top color interacts with the color beneath it.- Multiply (Darkens): The top color multiplies with the bottom color. White becomes invisible. Great for placing dark color overlays on photos while keeping the shadows deep.
- Screen (Lightens): The opposite of Multiply. Black becomes invisible. Great for placing glowing light effects or bright flares over dark UI backgrounds.
- Overlay (Contrast): Both darkens and lightens simultaneously, increasing the overall contrast. Great for adding subtle, gritty textures to solid background colors.
6. The "Soft UI" Depth Strategy
Premium design is whisper-quiet. It rarely uses harsh 100% opacity lines or heavy black shadows.-
Subtle Borders: To separate a white UI card from a light-gray background, do not use a harsh
1px #CCCCCCgray border. Use a White border, or a primary color border set to5%Opacity.
- Multiple Layered Shadows: A realistic shadow is never just one setting. A pro UI card uses TWO shadows.
-
Shadow 1 (Ambient):
Y: 2, Blur: 4, Black @ 4%(Provides the sharp physical edge).
-
Shadow 2 (Depth):
Y: 12, Blur: 24, Black @ 8%(Provides the soft, floating depth).
7. Diagrams/Visual Suggestions
*Visual Concept: Black Shadow vs. Colored Shadow* Provide a side-by-side visual of two identical purple buttons (#8B5CF6) on a white canvas.
-
Left Button: Uses a standard Black drop shadow (
#000000 at 25%). It looks heavy, muddy, and slightly dirty.
-
Right Button: Uses a Colored drop shadow (
#8B5CF6 at 40%). It looks vibrant, clean, and emits a premium "glowing" effect.
8. Best Practices
-
Blur Values = 2x Y Values: A mathematical rule of thumb for realistic drop shadows: The "Blur" value should almost always be exactly double the "Y" (vertical offset) value. If
Y = 4,Blur = 8. IfY = 10,Blur = 20. This mimics the natural physics of light dispersion.
9. Common Mistakes
-
The "Dirty" Gradient Shadow: A designer tries to use a Drop Shadow on a massive UI card, but sets the Opacity to
50%and the Blur to a tiny2px. This creates a thick, harsh black line around the card that looks like dirt. *The Fix:* Large UI cards must have *massive* Blurs (e.g.,40px) and incredibly *low* Opacities (e.g.,4%). The shadow should be felt, not seen.
10. Mini Project: Build a Premium SaaS UI Card
Let's combine Alpha, Blending, and Shadows into a masterpiece.-
1.
Draw a massive background Frame. Fill: Very Light Blue (
#EFF6FF).
-
2.
Draw a UI Card in the center (
W: 300, H: 400). Fill: Pure White (#FFFFFF).
-
3.
The Soft Border: Add a Stroke to the card. Color: Brand Blue (
#2563EB). Opacity:10%. (It looks incredibly crisp and integrated).
-
4.
The Soft Shadow: Add a Drop Shadow.
Y: 12,Blur: 32, Color:#1E3A8A(Dark Blue) at8%Opacity.
- 5. The Floating Accent: Draw a small circle icon overlapping the top edge of the card. Give it a vibrant Blue fill, and add a Colored Drop Shadow (Blue at 30%).
- 6. *Result:* This is no longer a beginner layout. This is a hyper-premium, dimensional UI card ready for a high-converting landing page.
11. Practice Exercises
-
1.
Explain the aesthetic and psychological difference between applying a standard Pure Black (
#000000) drop shadow to a brightly colored button versus applying a "Colored Drop Shadow."
- 2. Define the "Multiply" blending mode. In what specific UI scenario (involving a photograph and text) would you utilize Multiply to enhance readability?
12. MCQs with Answers
Question 1
A UI Designer wants to separate a white UI card from a slightly off-white background canvas. To achieve a highly premium, "Soft UI" aesthetic that looks physically realistic, what is the best mathematical approach to the Drop Shadow?
Question 2
When generating an overlay color for a notification banner, why is it considered a "Pro-Trick" to use your Primary Brand Color with the Alpha (Opacity) lowered to 10%, rather than manually picking a solid light-pastel HEX code from the color wheel?
13. Interview Questions
- Q: Explain the mathematical "rule of thumb" regarding the relationship between the Y-Offset value and the Blur value when engineering a realistic, physical drop shadow in Figma.
- Q: A junior designer's interface feels "muddy," "heavy," and "dirty." You inspect their Figma file and see they are using #000000 drop shadows at 35% opacity on everything. Walk me through exactly how you would instruct them to fix this file using advanced shadow techniques.
- Q: What are Figma Layer Blending Modes? Briefly contrast the mechanical function of the "Multiply" mode versus the "Screen" mode.
14. FAQs
Q: Do developers hate coding colored drop shadows and blending modes? A: Colored drop shadows are incredibly easy to code using standard CSS (box-shadow: 0px 8px 16px rgba(59, 130, 246, 0.3);). Blending modes (mix-blend-mode: multiply;) are also widely supported in modern CSS. However, always check with your engineering team if you are building an app for very old, legacy browsers where blending modes might break!