Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit eea3b1f

Browse files
committed
style: use white on black
1 parent cc2a781 commit eea3b1f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

frontend/src/pages/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ const CurrentStatus = () => {
177177
align="center"
178178
direction={{ base: 'column', md: 'row' }}
179179
spacing={{ base: 5, md: 8 }}
180-
bg="gray.50"
180+
bg="white"
181181
rounded="lg"
182-
color="gray.900"
182+
color="black"
183183
>
184184
<Icon as={GiCrownedHeart} boxSize={iconSize} />
185185

@@ -199,10 +199,10 @@ const CurrentStatus = () => {
199199
href="https://snapshot.org/#/devdao.eth/proposal/0x52fc76fe5865cf038b89b8c6ef78b6e691c0ab9c2b1228b84b0813b7832ce369"
200200
size={buttonSize}
201201
fontSize="xs"
202-
bg="gray.50"
202+
bg="white"
203203
border="1px"
204204
borderStyle="solid"
205-
borderColor="gray.900"
205+
borderColor="black"
206206
_hover={{ bg: 'gray.100' }}
207207
_active={{ bg: 'gray.200' }}
208208
leftIcon={<BsLightningCharge />}

frontend/src/theme.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export const theme = extendTheme({
2525
styles: {
2626
global: {
2727
body: {
28-
bg: 'gray.900',
29-
color: 'gray.50',
28+
bg: 'black',
29+
color: 'white',
3030
fontSize: 'md',
3131
},
3232
},

0 commit comments

Comments
 (0)