1
0
Fork 0
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:
Mikhail 2022-07-20 15:14:51 +03:00 committed by GitHub
parent b7aa49f960
commit d721e49a8c
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 8 deletions

View file

@ -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(

View file

@ -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

View file

@ -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>

View file

@ -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>

View file

@ -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>