style(colors): changed colors
using slate and grey colors for the most part with violot bc why not
This commit is contained in:
parent
71c87e8468
commit
5e0de6e894
8 changed files with 18 additions and 83 deletions
|
|
@ -2,8 +2,10 @@ import React from "react";
|
|||
|
||||
export default function ChatHeader({ title = "Title of Chat" }) {
|
||||
return (
|
||||
<header className="flex justify-center bg-blue-600">
|
||||
<h1 className="text-lg font-semibold">{title}</h1>
|
||||
<header className="flex justify-center text-slate-100">
|
||||
<h1 className="text-lg font-semibold shadow-xl bg-gray-900 px-4 py-2 rounded-4xl">
|
||||
{title}
|
||||
</h1>
|
||||
</header>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue