# update
URL: /reference/cli/commands/update

`npx tambo update <componentname>` or `npx tambo update installed`

Updates specific Tambo components or all installed components to their latest versions from the registry.

**Examples:**

```bash
# Update specific components
npx tambo update form graph

# Update ALL installed components at once
npx tambo update installed

# Update with custom directory
npx tambo update form --prefix=src/components/ui

# Skip confirmation prompts
npx tambo update installed --yes
```

## CSS Configuration Updates

When updating components, the CLI may also update your CSS variables and Tailwind configuration to ensure compatibility with the latest component versions.

<Callout type="info" title="Configuration Changes">
  Component updates may require new CSS variables or Tailwind configuration
  changes. The CLI will detect your Tailwind version and apply the appropriate
  format automatically.
</Callout>

For detailed information about what gets configured, see:

import { Card, Cards } from "fumadocs-ui/components/card";

<Card href="/reference/cli/configuration" title="CSS & Tailwind Configuration">
  Learn what changes are made to your globals.css and tailwind.config files
</Card>
