Chapter 614: shadowsHighlights()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- API
- shadows?
- highlights?
- disabled?
- Compatibility
- See also
Code Examples
export const MyComp: React.FC = () => {
return (
<Video
src="https://remotion.media/video.mp4"
effects={[
shadowsHighlights({
shadows: 0.2,
highlights: -0.15,
}),
]}
/>
);
};
- What it demonstrates: Usage pattern for shadowsHighlights() from the official docs.
Key Takeaways
- Understand preview when working with shadowsHighlights().
- Understand example when working with shadowsHighlights().
- Understand api when working with shadowsHighlights().
- Understand shadows? when working with shadowsHighlights().
- Understand highlights? when working with shadowsHighlights().
Connects To
- Animated Emoji: related page in the Effects Library section.
- get Available Emoji: related page in the Effects Library section.
- api: related page in the Effects Library section.