File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ export default function Chatbot() {
116
116
< Button
117
117
variant = "ghost"
118
118
size = "icon"
119
- className = "bg-gray-900 text-gray-50 hover:bg-gray-900 /90 dark:bg-gray-50 dark:text-gray-900 dark:hover:bg-gray-50/90 shadow-lg"
119
+ className = "bg-airlinedarkblue text-gray-50 hover:bg-airlinedarkblue /90 dark:bg-gray-50 dark:text-gray-900 dark:hover:bg-gray-50/90 shadow-lg"
120
120
onClick = { ( ) => setIsOpen ( ( prevState ) => ! prevState ) }
121
121
>
122
122
{ isOpen ? < XIcon className = "h-6 w-6" /> : < MessageCircleIcon className = "h-6 w-6" /> }
@@ -220,7 +220,7 @@ export default function Chatbot() {
220
220
return (
221
221
< div
222
222
key = { m ?. id }
223
- className = "flex w-max max-w-[75%] flex-col gap-2 rounded-lg px-3 py-2 text-sm ml-auto bg-gray-900 text-gray-50 dark:bg-gray-50 dark:text-gray-900"
223
+ className = "flex w-max max-w-[75%] flex-col gap-2 rounded-lg px-3 py-2 text-sm ml-auto bg-airlineblue text-white dark:bg-gray-50 dark:text-gray-900"
224
224
>
225
225
{ m ?. content }
226
226
</ div >
@@ -241,7 +241,7 @@ export default function Chatbot() {
241
241
value = { input }
242
242
onChange = { handleInputChange }
243
243
/>
244
- < Button type = "submit" size = "icon" onClick = { ( ) => submitQuery ( ) } >
244
+ < Button type = "submit" size = "icon" onClick = { ( ) => submitQuery ( ) } className = "bg-airlineblue" >
245
245
< SendIcon className = "h-4 w-4" />
246
246
< span className = "sr-only" > Send</ span >
247
247
</ Button >
You can’t perform that action at this time.
0 commit comments