Skip to content

Commit

Permalink
fix: replace theme with $dt (#675)
Browse files Browse the repository at this point in the history
Resolves #674
  • Loading branch information
TheAlexLichter authored Nov 17, 2022
1 parent 5f35e8d commit e356d02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@

:root {
/* DocSearch */
--docsearch-primary-color: theme('colors.primary.500') !important;
--docsearch-primary-color: $dt('colors.primary.500') !important;
}

.dark:root {
color-scheme: dark;
/* DocSearch */
--docsearch-primary-color: theme('colors.primary.500') !important;
--docsearch-primary-color: $dt('colors.primary.500') !important;
--docsearch-text-color: rgb(245, 246, 247);
--docsearch-container-background: rgba(9, 10, 17, 0.8);
--docsearch-modal-background: rgb(21, 23, 42);
Expand Down

1 comment on commit e356d02

@vercel
Copy link

@vercel vercel bot commented on e356d02 Nov 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.