Chapter 622: tint()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- API
- color
- amount?
- disabled?
- See also
Code Examples
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Video
src="https://remotion.media/video.mp4"
effects={[tint({color: '#1ec8ff', amount: 0.7})]}
/>
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for tint() from the official docs.
Key Takeaways
- Understand preview when working with tint().
- Understand example when working with tint().
- Understand api when working with tint().
- Understand color when working with tint().
- Understand amount? when working with tint().
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.