@@ -29,7 +29,7 @@ const HistoryAndNotifications = ({
2929 } ;
3030
3131 return (
32- < div className = "w-64 bg-white shadow-md p-4 overflow-hidden flex flex-col h-full" >
32+ < div className = "w-64 bg-card shadow-md p-4 overflow-hidden flex flex-col h-full" >
3333 < div className = "flex-1 overflow-y-auto mb-4 border-b pb-4" >
3434 < h2 className = "text-lg font-semibold mb-4" > History</ h2 >
3535 { requestHistory . length === 0 ? (
@@ -42,7 +42,7 @@ const HistoryAndNotifications = ({
4242 . map ( ( request , index ) => (
4343 < li
4444 key = { index }
45- className = "text-sm text-gray-600 bg-gray-100 p-2 rounded"
45+ className = "text-sm text-foreground bg-secondary p-2 rounded"
4646 >
4747 < div
4848 className = "flex justify-between items-center cursor-pointer"
@@ -74,7 +74,7 @@ const HistoryAndNotifications = ({
7474 < Copy size = { 16 } />
7575 </ button >
7676 </ div >
77- < pre className = "whitespace-pre-wrap break-words bg-blue-50 p-2 rounded" >
77+ < pre className = "whitespace-pre-wrap break-words bg-background p-2 rounded" >
7878 { JSON . stringify ( JSON . parse ( request . request ) , null , 2 ) }
7979 </ pre >
8080 </ div >
@@ -91,7 +91,7 @@ const HistoryAndNotifications = ({
9191 < Copy size = { 16 } />
9292 </ button >
9393 </ div >
94- < pre className = "whitespace-pre-wrap break-words bg-green-50 p-2 rounded" >
94+ < pre className = "whitespace-pre-wrap break-words bg-background p-2 rounded" >
9595 { JSON . stringify (
9696 JSON . parse ( request . response ) ,
9797 null ,
@@ -119,7 +119,7 @@ const HistoryAndNotifications = ({
119119 . map ( ( notification , index ) => (
120120 < li
121121 key = { index }
122- className = "text-sm text-gray-600 bg-gray-100 p-2 rounded"
122+ className = "text-sm text-foreground bg-secondary p-2 rounded"
123123 >
124124 < div
125125 className = "flex justify-between items-center cursor-pointer"
@@ -146,7 +146,7 @@ const HistoryAndNotifications = ({
146146 < Copy size = { 16 } />
147147 </ button >
148148 </ div >
149- < pre className = "whitespace-pre-wrap break-words bg-purple-50 p-2 rounded" >
149+ < pre className = "whitespace-pre-wrap break-words bg-background p-2 rounded" >
150150 { JSON . stringify ( notification , null , 2 ) }
151151 </ pre >
152152 </ div >
0 commit comments