1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-3542 Widgets | Enhancement | Minor design fix (#2258)

This commit is contained in:
Evgenii Kozlov 2025-04-08 20:06:15 +02:00 committed by GitHub
parent b942281592
commit 0a38390e46
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -115,7 +115,7 @@ fun WidgetMenu(
Text(
text = stringResource(id = R.string.widget_remove_widget),
style = defaultTextStyle.copy(
color = colorResource(id = R.color.palette_dark_red)
color = colorResource(id = R.color.palette_system_red)
),
modifier = Modifier.padding(end = extraEndPadding)
)

View file

@ -280,7 +280,7 @@ fun DeleteSpaceItem(
BaseButton(
modifier = modifier,
title = stringResource(id = R.string.space_settings_delete_space_button),
textColor = R.color.palette_dark_red
textColor = R.color.palette_system_red
)
}