diff --git a/src/components/Colors.ts b/src/components/Colors.ts index f9c83e9..db3973a 100644 --- a/src/components/Colors.ts +++ b/src/components/Colors.ts @@ -22,7 +22,7 @@ function generateStyles(scheme: ColorSchemeName) { borderColor: scheme === 'dark' ? '#262626' : '#ddd', }, activeBackground: { - backgroundColor: `${THEME_COLOR}${scheme === 'dark' ? '66' : '16'}`, + backgroundColor: `${THEME_COLOR}${scheme === 'dark' ? '26' : '16'}`, }, imageBackground: { backgroundColor: scheme === 'dark' ? '#333' : '#ddd', diff --git a/src/localisation/lang/en/locale.json b/src/localisation/lang/en/locale.json index 454eaa9..81a8e5c 100644 --- a/src/localisation/lang/en/locale.json +++ b/src/localisation/lang/en/locale.json @@ -55,5 +55,6 @@ "delete-album": "Delete Album", "delete-playlist": "Delete Playlist", "total-download-size": "Total Download Size", - "retry-failed-downloads": "Retry Failed Downloads" + "retry-failed-downloads": "Retry Failed Downloads", + "you-are-offline-message": "You are currently offline. You can only play previously downloaded music." } \ No newline at end of file diff --git a/src/localisation/types.ts b/src/localisation/types.ts index 513130b..f423907 100644 --- a/src/localisation/types.ts +++ b/src/localisation/types.ts @@ -53,4 +53,5 @@ export type LocaleKeys = 'play-next' | 'delete-track' | 'total-download-size' | 'no-downloads' -| 'retry-failed-downloads' \ No newline at end of file +| 'retry-failed-downloads' +| 'you-are-offline-message' \ No newline at end of file