<?xml version="1.0" encoding="utf-8"?>
<!-- Key faces. Pressed state matters more than it looks: without it a key tap
     on a slow handset feels like it did not register and people double-type. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="@color/hairline" />
            <corners android:radius="6dp" />
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/key_face" />
            <corners android:radius="6dp" />
        </shape>
    </item>
</selector>
