mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
DROID-28 Auth | Fix | Fix red button colors in auth flow (#2418)
This commit is contained in:
parent
b7aa49f960
commit
d721e49a8c
5 changed files with 4 additions and 8 deletions
|
@ -147,7 +147,7 @@ fun DeletedAccountScreen(
|
|||
) {
|
||||
Column {
|
||||
Chart(
|
||||
chartColor = colorResource(R.color.palette_dark_red),
|
||||
chartColor = colorResource(R.color.palette_system_red),
|
||||
actualProgress = progress
|
||||
)
|
||||
Text(
|
||||
|
|
|
@ -175,7 +175,7 @@ fun Warning(
|
|||
Spacer(modifier = Modifier.width(10.dp))
|
||||
Box(
|
||||
modifier = Modifier.height(48.dp).background(
|
||||
color = colorResource(R.color.palette_dark_red),
|
||||
color = colorResource(R.color.palette_system_red),
|
||||
shape = RoundedCornerShape(10.dp)
|
||||
).weight(1.0f, true).clickable(onClick = onPositiveClick),
|
||||
contentAlignment = Alignment.Center
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="@color/orange_button_background_color" />
|
||||
<corners android:radius="10dp" />
|
||||
</shape>
|
|
@ -61,5 +61,6 @@
|
|||
<color name="palette_very_light_teal">#022724</color>
|
||||
<color name="palette_very_light_lime">#172A08</color>
|
||||
<color name="palette_very_light_grey">#1D1D1B</color>
|
||||
<color name="palette_system_red">#F55522</color>
|
||||
|
||||
</resources>
|
||||
|
|
|
@ -176,6 +176,7 @@
|
|||
<color name="palette_very_light_teal">#D9F6F4</color>
|
||||
<color name="palette_very_light_lime">#E5F8D6</color>
|
||||
<color name="palette_very_light_grey">#F1F0ED</color>
|
||||
<color name="palette_system_red">#F55522</color>
|
||||
|
||||
<color name="dashboard_tab_color">#CC0066C3</color>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue