Skip to content

Commit

Permalink
changed white (gray_0) text to offwhite (gray_25) (#5453)
Browse files Browse the repository at this point in the history
  • Loading branch information
rimar1337 authored Sep 23, 2024
1 parent 4e8d86d commit 87d601e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/alf/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export function createThemes({
} as const

const darkPalette: Palette = {

Check warning on line 185 in src/alf/themes.ts

View workflow job for this annotation

GitHub Actions / Bundle and Deploy EAS Update

'darkPalette' is already declared in the upper scope on line 26 column 14
white: color.gray_0,
white: color.gray_25,
black: color.trueBlack,

contrast_25: color.gray_975,
Expand Down
4 changes: 2 additions & 2 deletions src/lib/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,11 +325,11 @@ export const darkTheme: Theme = {
textInverted: colors.green2,
},
inverted: {
background: lightPalette.white,
background: darkPalette.white,
backgroundLight: lightPalette.contrast_50,
text: lightPalette.black,
textLight: lightPalette.contrast_700,
textInverted: lightPalette.white,
textInverted: darkPalette.white,
link: lightPalette.primary_500,
border: lightPalette.contrast_100,
borderDark: lightPalette.contrast_200,
Expand Down

0 comments on commit 87d601e

Please sign in to comment.