Component
Command Palette
Spotlight-style command palette with search input, categorized commands, keyboard shortcuts, and navigation hints.
- Component
- Tailwind
- HTML
- MIT
Preview
Live component
9:41 100%
devsnips.dev/library/tailwind/components/modals/command-palette/ fluid · no fixed width 100%
Install
Add to your project
npx devsnips add Tailwind/Components/Modals/command-palette Tailwind/Components/Modals/command-palette <!-- Command Palette Modal -->
<div id="command-palette" class="fixed inset-0 z-50 hidden">
<!-- Backdrop -->
<div class="fixed inset-0 bg-black/50 backdrop-blur-sm" onclick="closeModal('command-palette')"></div>
<!-- Palette -->
<div class="fixed top-[20%] left-1/2 -translate-x-1/2 w-full max-w-2xl bg-white dark:bg-gray-900 rounded-2xl shadow-2xl overflow-hidden">
<!-- Search Input -->
<div class="flex items-center gap-4 px-6 py-4 border-b border-gray-100 dark:border-gray-800">
<svg class="w-6 h-6 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
</svg>
<input type="text" placeholder="Type a command or search..." class="flex-1 bg-transparent text-lg text-gray-900 dark:text-white placeholder-gray-400 focus:outline-none">
<kbd class="hidden md:inline-flex items-center gap-1 px-2 py-1 text-xs font-medium text-gray-500 dark:text-gray-400 bg-gray-100 dark:bg-gray-800 rounded">ESC</kbd>
</div>
<!-- Results -->
<div class="max-h-96 overflow-y-auto p-2">
<!-- Commands Section -->
<div class="px-3 py-2">
<p class="text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Quick Actions</p>
</div>
<button class="w-full flex items-center gap-4 px-4 py-3 rounded-xl hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-left">
<div class="w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center">
<svg class="w-5 h-5 text-blue-600 dark:text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4"/>
</svg>
</div>
<div class="flex-1">
<p class="font-medium text-gray-900 dark:text-white">Create new project</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Start a fresh workspace</p>
</div>
<kbd class="px-2 py-1 text-xs text-gray-500 dark:text-gray-400 bg-gray-100 dark:bg-gray-800 rounded">⌘N</kbd>
</button>
<button class="w-full flex items-center gap-4 px-4 py-3 rounded-xl hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-left">
<div class="w-10 h-10 bg-purple-100 dark:bg-purple-900/30 rounded-lg flex items-center justify-center">
<svg class="w-5 h-5 text-purple-600 dark:text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/>
</svg>
</div>
<div class="flex-1">
<p class="font-medium text-gray-900 dark:text-white">Schedule meeting</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Set up a team sync</p>
</div>
<kbd class="px-2 py-1 text-xs text-gray-500 dark:text-gray-400 bg-gray-100 dark:bg-gray-800 rounded">⌘K</kbd>
</button>
<button class="w-full flex items-center gap-4 px-4 py-3 rounded-xl hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-left">
<div class="w-10 h-10 bg-green-100 dark:bg-green-900/30 rounded-lg flex items-center justify-center">
<svg class="w-5 h-5 text-green-600 dark:text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
</svg>
</div>
<div class="flex-1">
<p class="font-medium text-gray-900 dark:text-white">Send message</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Message a team member</p>
</div>
<kbd class="px-2 py-1 text-xs text-gray-500 dark:text-gray-400 bg-gray-100 dark:bg-gray-800 rounded">⌘M</kbd>
</button>
<!-- Navigation Section -->
<div class="px-3 py-2 mt-2">
<p class="text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">Navigation</p>
</div>
<button class="w-full flex items-center gap-4 px-4 py-3 rounded-xl hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-left">
<div class="w-10 h-10 bg-amber-100 dark:bg-amber-900/30 rounded-lg flex items-center justify-center">
<svg class="w-5 h-5 text-amber-600 dark:text-amber-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/>
</svg>
</div>
<div class="flex-1">
<p class="font-medium text-gray-900 dark:text-white">Go to Dashboard</p>
<p class="text-sm text-gray-500 dark:text-gray-400">View your overview</p>
</div>
</button>
<button class="w-full flex items-center gap-4 px-4 py-3 rounded-xl hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-left">
<div class="w-10 h-10 bg-rose-100 dark:bg-rose-900/30 rounded-lg flex items-center justify-center">
<svg class="w-5 h-5 text-rose-600 dark:text-rose-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
</svg>
</div>
<div class="flex-1">
<p class="font-medium text-gray-900 dark:text-white">Open Settings</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Manage your preferences</p>
</div>
</button>
</div>
<!-- Footer -->
<div class="flex items-center justify-between px-6 py-3 border-t border-gray-100 dark:border-gray-800 bg-gray-50 dark:bg-gray-800/50">
<div class="flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400">
<span class="flex items-center gap-1">
<kbd class="px-1.5 py-0.5 bg-white dark:bg-gray-700 rounded">↑</kbd>
<kbd class="px-1.5 py-0.5 bg-white dark:bg-gray-700 rounded">↓</kbd>
to navigate
</span>
<span class="flex items-center gap-1">
<kbd class="px-1.5 py-0.5 bg-white dark:bg-gray-700 rounded">↵</kbd>
to select
</span>
</div>
</div>
</div>
</div>
<!-- Demo Trigger Button -->
<button onclick="openModal('command-palette')" class="px-6 py-3 bg-gray-900 dark:bg-gray-100 text-white dark:text-gray-900 font-medium rounded-xl hover:bg-gray-800 dark:hover:bg-gray-200 transition-colors focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-offset-2">
<span class="flex items-center gap-2">
<span>Open Command Palette</span>
<kbd class="px-2 py-0.5 text-xs bg-gray-700 dark:bg-gray-200 rounded">⌘K</kbd>
</span>
</button> # Command Palette
Command palette modal.
## Usage
```bash
npx devsnips add Tailwind/Components/Modals/command-palette
```
Copy from `code.html`.
## File Structure
`code.html` · `preview.html` · `metadata.json` · `README.md` 118 lines UTF-8 · LF · Spaces: 2
Continue browsing