mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
more dark mode colors
This commit is contained in:
@@ -14,15 +14,15 @@ const SchemaTooltip: React.FC<{ description?: string }> = ({ description }) => {
|
||||
<TooltipProvider delayDuration={400}>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Info className="rounded-full p-1 hover:bg-gray-300" size={24} />
|
||||
<Info className="rounded-full p-1 hover:bg-gray-300 dark:hover:bg-gray-700" size={24} />
|
||||
</TooltipTrigger>
|
||||
<TooltipContent className="tooltip-content max-w-xs">
|
||||
<TooltipContent className="tooltip-content max-w-xs bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100">
|
||||
<ReactMarkdown
|
||||
components={{
|
||||
a: ({ node, ...props }) => (
|
||||
<a
|
||||
target="_blank"
|
||||
className="text-blue-400 underline"
|
||||
className="text-blue-400 dark:text-blue-300 underline"
|
||||
{...props}
|
||||
/>
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user