mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-02-23 15:07:39 +01:00
15 lines
601 B
XML
15 lines
601 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<resources>
|
||
|
<style name="Wheat" parent="android:Theme.Light">
|
||
|
<item name="android:windowBackground">@color/wheatBackground</item>
|
||
|
<item name="android:textColorPrimary">@color/wheatForeground1</item>
|
||
|
<item name="android:textColorSecondary">@color/wheatForeground2</item>
|
||
|
<item name="android:listViewStyle">@style/WheatListView</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="WheatListView" parent="android:style/Widget.ListView.White">
|
||
|
<item name="android:cacheColorHint">@color/wheatBackground</item>
|
||
|
</style>
|
||
|
|
||
|
</resources>
|