Skip to content

Commit

Permalink
chore: darken colors
Browse files Browse the repository at this point in the history
  • Loading branch information
koenoe committed Nov 15, 2024
1 parent 9e26ba4 commit 153ee30
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

body.scrollbar-is-visible::-webkit-scrollbar-corner,
body.scrollbar-is-visible::-webkit-scrollbar-track {
background: theme('colors.neutral.800');
background: theme('colors.neutral.900');
}

body.scrollbar-is-visible::-webkit-scrollbar-thumb {
background: theme('colors.neutral.600');
background: theme('colors.neutral.700');
border-radius: 10px;
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function RootLayout({
<html lang="en">
<body
className={cx(
'flex min-h-screen select-none flex-col overflow-x-hidden overscroll-y-none bg-neutral-800 text-white subpixel-antialiased',
'flex min-h-screen select-none flex-col overflow-x-hidden overscroll-y-none bg-neutral-900 text-white subpixel-antialiased',
inter.className,
)}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/DiscoverFilters/Genres.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const buttonStyles = cva(
{
variants: {
state: {
active: 'bg-white text-neutral-800',
active: 'bg-white text-neutral-900',
inactive: 'bg-white/10 text-white',
},
},
Expand Down
4 changes: 2 additions & 2 deletions src/components/DiscoverFilters/MultiSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ function MultiSelect({
{isPending && (
<svg
aria-hidden="true"
className="inline h-4 w-4 animate-spin fill-white text-neutral-600"
className="inline h-4 w-4 animate-spin fill-white text-neutral-700"
viewBox="0 0 100 101"
fill="none"
xmlns="http://www.w3.org/2000/svg"
Expand Down Expand Up @@ -335,7 +335,7 @@ function MultiSelect({
variants={dropdownVariants}
>
<motion.div
className="relative h-auto max-h-40 overflow-y-auto overflow-x-hidden rounded-lg bg-white text-neutral-800 md:max-h-96"
className="relative h-auto max-h-40 overflow-y-auto overflow-x-hidden rounded-lg bg-white text-neutral-900 md:max-h-96"
style={{
width: widthOfResults,
}}
Expand Down
2 changes: 1 addition & 1 deletion src/components/DiscoverFilters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function DiscoverFilters({
>
<div className="flex h-[18px] w-[18px] items-center justify-center">
{filterCount > 0 ? (
<span className="flex h-full w-full items-center justify-center rounded-full bg-white text-[11px] font-bold leading-none tracking-tighter text-neutral-800">
<span className="flex h-full w-full items-center justify-center rounded-full bg-white text-[11px] font-bold leading-none tracking-tighter text-neutral-900">
{filterCount}
</span>
) : (
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const DEFAULT_BACKGROUND_COLOR = '#262626';
export const DEFAULT_BACKGROUND_COLOR = '#171717';
export const DEFAULT_BACKGROUND_IMAGE =
'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';

0 comments on commit 153ee30

Please sign in to comment.