Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit bfd71a26 authored by Patrick Gaskin's avatar Patrick Gaskin
Browse files

LatinIME: Add OLED theme

- Modified the You icons to use tints over a plain white icon.
- New theme with black background and dim gray keys.
- Theme is mostly based on You, with some values from LXX-Dark,

Change-Id: Ifa44610d977edc0596301aeb577b01f4c7a23d31
parent 5a091397
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
    SPDX-FileCopyrightText: The LineageOS Project
    SPDX-License-Identifier: Apache-2.0
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/key_action_background_oled"/>
    <corners android:radius="@dimen/keyboard_key_corner_radius_you" />
</shape>
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
    SPDX-FileCopyrightText: The LineageOS Project
    SPDX-License-Identifier: Apache-2.0
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/key_action_background_pressed_oled"/>
    <corners android:radius="@dimen/keyboard_key_corner_radius_you" />
</shape>
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
    SPDX-FileCopyrightText: The LineageOS Project
    SPDX-License-Identifier: Apache-2.0
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/key_functional_background_oled"/>
    <corners android:radius="@dimen/keyboard_key_corner_radius_you" />
</shape>
+10 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
    SPDX-FileCopyrightText: The LineageOS Project
    SPDX-License-Identifier: Apache-2.0
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
          android:drawable="@drawable/btn_keyboard_key_functional_pressed_oled" />
    <item android:drawable="@drawable/btn_keyboard_key_functional_normal_oled" />
</selector>
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
    SPDX-FileCopyrightText: The LineageOS Project
    SPDX-License-Identifier: Apache-2.0
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/key_functional_background_pressed_oled"/>
    <corners android:radius="@dimen/keyboard_key_corner_radius_you" />
</shape>
Loading