Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
xmflsct committed Aug 27, 2023
2 parents 71b3816 + 9f8064d commit 4e337e1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 25 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "tooot",
"version": "4.10.2",
"version": "4.10.3",
"description": "tooot for Mastodon",
"author": "xmflsct <[email protected]>",
"license": "GPL-3.0-or-later",
Expand Down
36 changes: 12 additions & 24 deletions src/utils/styles/themes.ts
Expand Up @@ -97,30 +97,18 @@ const themeColors: {
},

separator: {
light: PlatformColor(
Platform.select({
ios: 'separator',
android: '?android:attr/dividerVertical',
default: 'rgb(180, 180, 180)'
}),
'rgb(180, 180, 180)'
) as unknown as string,
dark_lighter: PlatformColor(
Platform.select({
ios: 'separator',
android: '?android:attr/dividerVertical',
default: 'rgb(90, 90, 90)'
}),
'rgb(90, 90, 90)'
) as unknown as string,
dark_darker: PlatformColor(
Platform.select({
ios: 'separator',
android: '?android:attr/dividerVertical',
default: 'rgb(90, 90, 90)'
}),
'rgb(90, 90, 90)'
) as unknown as string
light: Platform.select({
ios: PlatformColor('separator') as unknown as string,
default: 'rgb(180, 180, 180)'
}),
dark_lighter: Platform.select({
ios: PlatformColor('separator') as unknown as string,
default: 'rgb(90, 90, 90)'
}),
dark_darker: Platform.select({
ios: PlatformColor('separator') as unknown as string,
default: 'rgb(90, 90, 90)'
})
},

shimmerDefault: {
Expand Down

0 comments on commit 4e337e1

Please sign in to comment.