Skip to content

Commit

Permalink
Fix dark mode formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
deadman96385 committed Feb 29, 2024
1 parent 7de7173 commit 8dbe6f7
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 8 deletions.
2 changes: 2 additions & 0 deletions app/src/main/res/layout/card_counter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
android:layout_marginTop="@dimen/cardview_margin_top"
app:cardCornerRadius="20sp"
app:cardElevation="10sp"

>

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/text_color_inverted"
>

<LinearLayout
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/card_dualcounter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/text_color_inverted">

<LinearLayout
android:id="@+id/green_linear"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/card_list.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/text_color_inverted">

<LinearLayout
android:id="@+id/category_color"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/card_segment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/text_color_inverted">

<LinearLayout
android:id="@+id/category_color"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/card_teamselect.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/text_color_inverted">

<LinearLayout
android:id="@+id/category_color"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/card_textbox.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/text_color_inverted">

<LinearLayout
android:id="@+id/category_color"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/card_yesno.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/text_color_inverted">

<LinearLayout
android:id="@+id/category_color"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/ui_dual_number_picker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
android:layout_marginStart="8dp"
android:backgroundTint="@color/accent_color"
android:text="@string/plus"
android:textColor="@color/white"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@+id/display"
app:layout_constraintEnd_toEndOf="parent"
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/layout/ui_number_picker_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
android:text="@string/minus"
android:textStyle="bold"
app:autoSizeTextType="uniform"
android:textColor="@color/white"
android:backgroundTint="@color/accent_color"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/display"
Expand Down Expand Up @@ -42,6 +43,7 @@
android:layout_height="match_parent"
android:text="@string/plus"
android:textStyle="bold"
android:textColor="@color/white"
app:autoSizeTextType="uniform"
android:backgroundTint="@color/accent_color"
app:layout_constraintBottom_toBottomOf="parent"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/ui_yes_no_segmented.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
android:layout_weight="1"
android:padding="5dp"
app:autoSizeTextType="uniform"
app:sb_selectedTextColor="@color/text_color_inverted"
app:sb_selectedTextColor="@color/text_color"
app:sb_text="@string/no"
app:sb_textColor="@color/text_color"
/>
Expand All @@ -41,7 +41,7 @@
android:layout_weight="1"
android:padding="5dp"
app:autoSizeTextType="uniform"
app:sb_selectedTextColor="@color/text_color_inverted"
app:sb_selectedTextColor="@color/text_color"
app:sb_text="@string/yes"
app:sb_textColor="@color/text_color"
/>
Expand Down

0 comments on commit 8dbe6f7

Please sign in to comment.