Skip to content

Commit 47b2f9c

Browse files
committed
Align color theme with new app
1 parent 6026207 commit 47b2f9c

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

src/components/Column.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const Column = ({ className, heading, loading, loadingAmount, children }: Column
2424
return (
2525
<Flex className={cn('relisten-column flex-1 break-words', className)} column>
2626
{heading && (
27-
<Flex center className="min-h-[32px] w-full bg-relisten-100 text-white">
27+
<Flex center className="bg-relisten-600 min-h-[32px] w-full text-white">
2828
{heading}
2929
</Flex>
3030
)}

src/components/Row.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ const Row = ({
7979
<Spinner />
8080
</div>
8181
)}
82-
{isPending && <div className="w-2 animate-pulse bg-black/30" />}
82+
{isPending && <div className="bg-relisten-600/30 w-2 animate-pulse" />}
8383

84-
{!isPending && isActive && <div className="w-2 bg-black/75" />}
84+
{!isPending && isActive && <div className="bg-relisten-600 w-2" />}
8585
<Flex className="w-full flex-1 items-center justify-between p-1 leading-tight">
8686
{children}
8787
</Flex>

src/styles/globals.css

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@
44
--text-xxs: 0.7rem;
55
--text-xxs--line-height: 1rem;
66

7-
--color-relisten-100: #279bbc;
7+
/* --color-relisten-100: #279bbc; */
8+
9+
--color-relisten-DEFAULT: #009DC1;
10+
--color-relisten-50: #A2EEFF;
11+
--color-relisten-100: #8EEAFF;
12+
--color-relisten-200: #65E2FF;
13+
--color-relisten-300: #3CDBFF;
14+
--color-relisten-400: #14D3FF;
15+
--color-relisten-500: #00BEEA;
16+
--color-relisten-600: #009DC1;
17+
--color-relisten-700: #006F89;
18+
--color-relisten-800: #004251;
19+
--color-relisten-900: #001D24;
20+
--color-relisten-950: #001114;
821
}
922

1023
/*

0 commit comments

Comments
 (0)