diff options
| author | 2022-08-11 19:51:20 +0000 | |
|---|---|---|
| committer | 2022-08-12 16:17:11 +0000 | |
| commit | 1a4688460b67f0f94ecd32dd682da4238ebddf76 (patch) | |
| tree | ccb88bdb29e2489f6facb8a1c0250bbb0f4ec52e | |
| parent | 2701e8074c69080ed181f141dbe24149cf70d6e2 (diff) | |
Side Fps Toast theme changes according to system theme.
Test: Manual
Fixes: 241484317
Change-Id: I728a54d1807ff818ba090259a38f12fe76b45ed4
Merged-In: I728a54d1807ff818ba090259a38f12fe76b45ed4
| -rw-r--r-- | core/res/res/layout/side_fps_toast.xml | 4 | ||||
| -rw-r--r-- | core/res/res/values-night/colors.xml | 6 | ||||
| -rw-r--r-- | core/res/res/values/colors.xml | 6 |
3 files changed, 15 insertions, 1 deletions
diff --git a/core/res/res/layout/side_fps_toast.xml b/core/res/res/layout/side_fps_toast.xml index 58b8cc9438ae..96860b050393 100644 --- a/core/res/res/layout/side_fps_toast.xml +++ b/core/res/res/layout/side_fps_toast.xml @@ -20,13 +20,14 @@ android:layout_height="wrap_content" android:minWidth="350dp" android:layout_gravity="center" - android:theme="?attr/alertDialogTheme"> + android:background="@color/side_fps_toast_background"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/fp_power_button_enrollment_title" android:singleLine="true" android:ellipsize="end" + android:textColor="@color/side_fps_text_color" android:paddingLeft="20dp"/> <Space android:layout_width="wrap_content" @@ -39,5 +40,6 @@ android:text="@string/fp_power_button_enrollment_button_text" android:paddingRight="20dp" style="?android:attr/buttonBarNegativeButtonStyle" + android:textColor="@color/side_fps_button_color" android:maxLines="1"/> </LinearLayout>
\ No newline at end of file diff --git a/core/res/res/values-night/colors.xml b/core/res/res/values-night/colors.xml index 33c9b95c5819..ffaccd3ddc57 100644 --- a/core/res/res/values-night/colors.xml +++ b/core/res/res/values-night/colors.xml @@ -37,4 +37,10 @@ <color name="user_icon_6">#ff4ecde6</color><!-- cyan --> <color name="user_icon_7">#fffbbc04</color><!-- yellow --> <color name="user_icon_8">#fffa903e</color><!-- orange --> + + <!-- Color for side fps toast dark theme--> + <color name="side_fps_toast_background">#2E3132</color> + <color name="side_fps_text_color">#EFF1F2</color> + <color name="side_fps_button_color">#33B9DB</color> + </resources> diff --git a/core/res/res/values/colors.xml b/core/res/res/values/colors.xml index b515abc4000f..4085d633b5a0 100644 --- a/core/res/res/values/colors.xml +++ b/core/res/res/values/colors.xml @@ -450,4 +450,10 @@ <!-- Color of camera light when camera is in use --> <color name="camera_privacy_light_day">#FFFFFF</color> <color name="camera_privacy_light_night">#FFFFFF</color> + + <!-- Color for side fps toast light theme --> + <color name="side_fps_toast_background">#F7F9FA</color> + <color name="side_fps_text_color">#191C1D</color> + <color name="side_fps_button_color">#00677E</color> + </resources> |