Skip to content

Commit

Permalink
[res vr_keyboard] updated keyboard colors to be in-line with current …
Browse files Browse the repository at this point in the history
…theme
  • Loading branch information
Amanda M. Watson committed Jan 20, 2024
1 parent 2da9195 commit 1c61ad9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<!-- Pressed state -->
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#F2A177"/> <!-- Pressed color -->
<solid android:color="#707B7C"/> <!-- Pressed color -->
<corners android:radius="4dp"/>
</shape>
</item>
<!-- Default state -->
<item>
<shape android:shape="rectangle">
<solid android:color="#AD5D5D"/> <!-- Default color -->
<solid android:color="#A9B2B1"/> <!-- Default color -->
<corners android:radius="4dp"/>
</shape>
</item>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<!-- Pressed state -->
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#9FFFCB"/> <!-- Pressed color -->
<solid android:color="#DFA900"/> <!-- Pressed color -->
<corners android:radius="4dp"/>
</shape>
</item>
<!-- Default state -->
<item>
<shape android:shape="rectangle">
<solid android:color="#40826D"/> <!-- Default color -->
<solid android:color="#F8BE00"/> <!-- Default color -->
<corners android:radius="4dp"/>
</shape>
</item>
Expand Down
2 changes: 1 addition & 1 deletion src/android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</style>

<style name="VrKeyboardEditText" parent="Widget.AppCompat.EditText">
<item name="android:textColor">@android:color/white</item>
<item name="android:textColor">@android:color/black</item>
<item name="android:textSize">16sp</item>
<item name="android:padding">12dp</item>
</style>
Expand Down

0 comments on commit 1c61ad9

Please sign in to comment.