Photography

Subject Matter: Events, conferences, people in authentic moments
Color Treatment: Apply gradient overlay (50-70% opacity) with multiply blend mode
Overlay Colors: Use purple-to-pink or lavender-to-pink gradients
Avoid: Traditional stock photography, generic poses, overly staged shots
Style: Authentic, energetic, confident, professional yet approachable

Keywords
Authentic - Energy - Confident

Photography Moodboard

Event Photo
Conference Photo
Networking Event
Attendee Photo
Happy Attendee

Color Overlay Treatment

Without Overlay
Original Photo
With Color Overlay
Photo with Overlay
CSS Overlay Example
/* Container with image */
.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* Color overlay */
.image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(122, 0, 255, 0.3) 0%, 
    rgba(255, 128, 130, 0.3) 100%
  );
}

Overlay Variations

Photo 1
Purple β†’ Pink
Photo 2
Lavender β†’ Pink
Photo 3
Pink β†’ Purple
Photo 4
Purple β†’ Lavender
Copied!