Skip to content

Commit aa46701

Browse files
committed
change 191919s to dark-palette-backgroundAlternate
1 parent 3c4e69a commit aa46701

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

apps/web/src/components/Ecosystem/EcosystemFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export function EcosystemFilters({
121121

122122
<Popover.Portal>
123123
<Popover.Content className="z-50 w-64" sideOffset={5}>
124-
<Card radius={8} innerClassName="bg-[#191919] p-4">
124+
<Card radius={8} innerClassName="bg-dark-palette-backgroundAlternate p-4">
125125
<div className="flex flex-col gap-2">
126126
{config[category]?.map((subcategory) => {
127127
const subcategoryIsSelected = selectedSubcategories.includes(subcategory);

apps/web/src/components/base-org/shared/TopNavigation/DevelopersDropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function DevelopersDropdown() {
3434
return (
3535
<AnalyticsProvider context="developers">
3636
<div className="relative m-0 w-full rounded-xl bg-white/20 p-[1px]">
37-
<div className="flex flex-col gap-2.5 rounded-xl bg-[#191919] p-2">
37+
<div className="flex flex-col gap-2.5 rounded-xl bg-dark-palette-backgroundAlternate p-2">
3838
<Link
3939
href="https://docs.base.org"
4040
className="flex items-center justify-between rounded-lg bg-dark-palette-secondary px-4 py-3 hover:bg-white/10"

apps/web/src/components/base-org/shared/TopNavigation/GasPriceDropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function GasPriceDropdown() {
4343
<small>Mwei</small>
4444
</div>
4545
<div className="absolute left-0 top-full hidden pt-2 group-hover:inline-block">
46-
<Card innerClassName="p-4 bg-[#191919]">
46+
<Card innerClassName="p-4 bg-dark-palette-backgroundAlternate">
4747
<ul className="flex flex-col gap-2 whitespace-nowrap">
4848
<li className="flex gap-2">
4949
<strong className="font-normal">{base.name}</strong>

apps/web/src/components/base-org/shared/TopNavigation/MenuDesktop.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ export default function MenuDesktop({ links }: MenuDesktopProps) {
106106
{links[hoverIndex]?.name === 'Developers' ? (
107107
<DevelopersDropdown />
108108
) : (
109-
<Card radius={8} innerClassName="bg-[#191919]">
110-
<div className="flex w-full items-stretch gap-2 rounded-lg bg-[#191919] p-2">
109+
<Card radius={8} innerClassName="bg-dark-palette-backgroundAlternate">
110+
<div className="flex w-full items-stretch gap-2 rounded-lg bg-dark-palette-backgroundAlternate p-2">
111111
{links[hoverIndex]?.subItems && (
112112
<AnalyticsProvider context={links[hoverIndex].analyticContext}>
113113
<div className="flex flex-1 flex-col">

0 commit comments

Comments
 (0)