Chat Window Component
A simple chat window component designed with 3D elements, earth tones color scheme, and responsive dark theme support.
HTML Code
<div class="max-w-md mx-auto bg-gray-100 dark:bg-gray-800 rounded-lg shadow-lg overflow-hidden">
<div class="bg-green-600 dark:bg-green-700 p-4">
<h2 class="text-white text-lg font-semibold">Chat Window</h2>
</div>
<div class="p-4">
<div class="flex items-start mb-4">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-10 h-10 rounded-full mr-3">
<div class="bg-gray-200 dark:bg-gray-700 p-2 rounded-lg shadow-md">
<p class="text-gray-800 dark:text-gray-200">Hello! How can I help you today?</p>
</div>
</div>
<div class="flex items-start mb-4">
<img src="https://randomuser.me/api/portraits/women/1.jpg" alt="User Avatar" class="w-10 h-10 rounded-full mr-3">
<div class="bg-gray-200 dark:bg-gray-700 p-2 rounded-lg shadow-md">
<p class="text-gray-800 dark:text-gray-200">I'm looking for more information about your services.</p>
</div>
</div>
<div class="flex items-start mb-4">
<img src="https://randomuser.me/api/portraits/men/2.jpg" alt="User Avatar" class="w-10 h-10 rounded-full mr-3">
<div class="bg-gray-200 dark:bg-gray-700 p-2 rounded-lg shadow-md">
<p class="text-gray-800 dark:text-gray-200">Sure! Please check our portfolio.</p>
</div>
</div>
<div class="flex items-center">
<input type="text" placeholder="Type your message..." class="flex-1 p-2 rounded-lg bg-gray-200 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 shadow-sm" />
<button class="ml-2 bg-green-600 dark:bg-green-700 text-white px-4 py-2 rounded-lg shadow-lg">Send</button>
</div>
</div>
</div>
Related Components
Chat Window Component with 3D Design, Responsiveness, and Dark Mode
A responsive chat window component with 3D design elements and dark theme support using Tailwind CSS. Includes placeholder avatars and images.
Simple Brutalist Chat Window
Brutalist simple grayscale chat window component for blog content consumption with dark mode and responsive design
Chat Window Component
A responsive chat window component styled with Material Design principles and Tailwind CSS, featuring dark mode support.