Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sealed class OnboardingPageFragment : Fragment() {

class NoTracePage : OnboardingPageFragment() {
override fun layoutResource(): Int = R.layout.content_onboarding_no_trace
override fun backgroundColor(): Int = R.color.powderBlue
override fun backgroundColor(): Int = R.color.cornflowerBlue
}

class DefaultBrowserPage : OnboardingPageFragment() {
Expand Down
Binary file modified app/src/main/res/drawable-hdpi/onboarding_image_no_trace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-mdpi/onboarding_image_no_trace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-xhdpi/onboarding_image_no_trace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-xxhdpi/onboarding_image_no_trace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-xxxhdpi/onboarding_image_no_trace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions app/src/main/res/layout/content_onboarding_no_trace.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
android:paddingEnd="44dp"
android:paddingStart="44dp"
android:tag="onboardingNoTrace"
tools:background="@color/powderBlue"
tools:background="@color/cornflowerBlue"
tools:context="com.duckduckgo.app.onboarding.ui.OnboardingActivity">

<ImageView
Expand Down Expand Up @@ -54,7 +54,6 @@
style="@style/OnboardingTextTitle"
android:text="@string/onboardingNoTraceTitle" />


<TextView
style="@style/OnboardingTextSubtitle"
android:text="@string/onboardingNoTraceDescription1" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<color name="powderBlue">#50BFFF</color>
<color name="powderBlue2">#B2D6F3</color>
<color name="windowsBlue">#3c90c0</color>
<color name="denimBlue">#3d5599</color>
<color name="cornflowerBlue">#678FFF</color>

<color name="lightOliveGreen">#93c04d</color>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
</style>

<style name="OnboardingButtonNoTrace" parent="OnboardingButtonStyle">
<item name="colorAccent">@color/windowsBlue</item>
<item name="colorAccent">@color/denimBlue</item>
</style>

<style name="OnboardingButtonDefaultBrowser" parent="OnboardingButtonStyle">
Expand Down