fix: notification modal background issues (#522)

This commit is contained in:
runjuu 2023-05-10 15:07:31 -07:00 committed by GitHub
parent 3574736ae3
commit e450b25c47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -29,9 +29,9 @@ const wagmiClient = createClient(getDefaultClientConfig({ appName: APP_NAME }))
const persister = createIDBPersister()
const colorScheme: NotificationModalColorScheme = {
text: `rgb(var(--tw-colors-i-zinc-800))`,
textSecondary: `rgb(var(--tw-colors-i-gray-600))`,
background: `rgb(var(--tw-colors-i-white))`,
text: `rgb(var(--tw-color-zinc-800))`,
textSecondary: `rgb(var(--tw-color-gray-600))`,
background: `rgb(var(--tw-color-white))`,
border: `var(--border-color)`,
}