aboutsummaryrefslogtreecommitdiff
path: root/src/main/res/drawable/blacktheme_key_function.xml
blob: 62685c67d54c38e59c45857cdc5d0f2dd76e5fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape
                android:shape="rectangle">
            <padding android:top="@dimen/key_top_inset"
                     android:right="@dimen/key_right_inset"
                     android:bottom="@dimen/key_bottom_inset"
                     android:left="@dimen/key_left_inset"/>
            <solid android:color="@color/blacktheme_color_function"/>
            <stroke
                    android:width="@dimen/blacktheme_width_key_stroke"
                    android:color="@color/blacktheme_color_function_stroke"/>
            <corners android:radius="@dimen/blacktheme_radius_key_corner"/>
        </shape>
    </item>
</layer-list>