Skip to content

Commit 470dfa4

Browse files
committed
replace old theme colors with new DS colors
1 parent cf69f67 commit 470dfa4

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

src/components/MeetupList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const MeetupList = () => {
6464
results update as you type
6565
</span>
6666
<ul
67-
className="m-0 border-2 border-off-background"
67+
className="m-0 border-2 border-body-light"
6868
aria-label="Event meetup results"
6969
>
7070
{filteredMeetups.map((meetup, idx) => (
@@ -73,8 +73,8 @@ const MeetupList = () => {
7373
hideArrow
7474
className={cn(
7575
"group mb-[0.25px] flex w-full justify-between p-4 text-current no-underline",
76-
"hover:rounded hover:bg-table-background-hover hover:text-current hover:no-underline hover:shadow-[0_0_1px] hover:shadow-primary",
77-
"border-b-2 border-off-background"
76+
"hover:bg-background-highlight hover:text-current hover:no-underline hover:shadow-[0_0_1px] hover:shadow-primary",
77+
"border-b-2 border-body-light"
7878
)}
7979
key={idx}
8080
>

src/styles/global.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
rgba(145, 234, 228, 0.2) 100%
5050
);
5151
--search-background: var(--background);
52-
--off-background: #f7f7f7;
53-
--table-background-hover: #f2f2f2;
5452
}
5553

5654
.dark {
@@ -85,8 +83,6 @@
8583
rgba(134, 253, 232, 0.08) 100%
8684
);
8785
--search-background: #4c4c4c;
88-
--off-background: #181818;
89-
--table-background-hover: rgba(255,115,36,.013);
9086
}
9187
}
9288

tailwind.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,6 @@ const config = {
217217
"active-background": "hsla(var(--menu-4-active-background))",
218218
},
219219
},
220-
"off-background": "var(--off-background)",
221-
"table-background-hover": "var(--table-background-hover)",
222220
},
223221

224222
/** @deprecated */

0 commit comments

Comments
 (0)