--- title: Tooltip description: A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it. component: true links: doc: https://www.radix-ui.com/docs/primitives/components/tooltip api: https://www.radix-ui.com/docs/primitives/components/tooltip#api-reference --- ## Installation CLI Manual ```bash npx shadcn@latest add tooltip ``` Install the following dependencies: ```bash npm install @radix-ui/react-tooltip ``` Copy and paste the following code into your project. Update the import paths to match your project setup. ## Usage ```tsx showLineNumbers import { Tooltip, TooltipContent, TooltipTrigger, } from "@/components/ui/tooltip" ``` ```tsx showLineNumbers Hover

Add to library

``` --- ## Changelog ### 2025-09-22 Update tooltip colors We've updated the tooltip colors to use the foreground color for the background and the background color for the foreground. Replace `bg-primary text-primary-foreground` with `bg-foreground text-background` for both `` and ``.