Skip to content

Commit

Permalink
new fashion purple theme
Browse files Browse the repository at this point in the history
  • Loading branch information
jrywu committed Jul 31, 2016
1 parent 79e8e37 commit a7e81c7
Show file tree
Hide file tree
Showing 58 changed files with 758 additions and 46 deletions.
Expand Up @@ -3597,6 +3597,7 @@ public KeyboardTheme(String name, int themeId, int styleId) {
new KeyboardTheme("Dark", 1, R.style.LIMETheme_Dark),
new KeyboardTheme("Pink", 2, R.style.LIMETheme_Pink),
new KeyboardTheme("TechBlue", 2, R.style.LIMETheme_TechBlue),
new KeyboardTheme("FashionPurple", 2, R.style.LIMETheme_FashionPurple),
};

private int mKeyboardThemeIndex = -1;
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions LimeStudio/app/src/main/res/drawable/btn_expand_fashion_purple.xml
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>

<!--
~ /*
~ *
~ ** Copyright 2016, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/lime-ime/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~ *
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~ *
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ *
~ */
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/ic_suggest_expander_fashion_purple"/>
<item android:state_pressed="true" android:drawable="@drawable/ic_suggest_expander_fashion_purple_hl"/>
<item android:state_focused="true" android:drawable="@drawable/ic_suggest_expander_fashion_purple_hl"/>
</selector>
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ /*
~ ** Copyright 2015, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/jrywu/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ */
-->

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="3dp"
/>
<solid
android:color="@color/second_background_fashion_purple_hl"
/>
<padding
android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"
/>
<size
android:width="30dp"
android:height="46dp"
/>

<stroke
android:width="1dp"
android:color="@color/keyboard_background_fashion_purple"
/>

</shape>
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ /*
~ ** Copyright 2015, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/jrywu/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ */
-->

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="3dp"
/>
<solid
android:color="@color/fashion_purple_hl"
/>
<padding
android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"
/>
<size
android:width="30dp"
android:height="46dp"
/>

<stroke
android:width="1dp"
android:color="@color/keyboard_background_fashion_purple"
/>

</shape>
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ /*
~ *
~ ** Copyright 2015, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/lime-ime/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~ *
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~ *
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ *
~ */
-->

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="3dp"
/>
<solid
android:color="@color/second_background_fashion_purple"
/>
<padding
android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"
/>
<size
android:width="50dp"
android:height="80dp"
/>

<stroke
android:width="2dp"
android:color="@color/keyboard_background_fashion_purple"
/>

</shape>
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ /*
~ ** Copyright 2015, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/jrywu/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ */
-->

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="3dp"
/>
<solid
android:color="@color/second_background_fashion_purple"
/>
<padding
android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"
/>
<size
android:width="30dp"
android:height="46dp"
/>

<stroke
android:width="1dp"
android:color="@color/keyboard_background_fashion_purple"
/>

</shape>
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ /*
~ ** Copyright 2015, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/jrywu/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ */
-->

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="3dp"
/>
<solid
android:color="@color/fashion_purple_hl"
/>
<padding
android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"
/>
<size
android:width="30dp"
android:height="46dp"
/>

<stroke
android:width="1dp"
android:color="@color/keyboard_background_fashion_purple"
/>

</shape>
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>


<!--
~ /*
~ ** Copyright 2015, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/jrywu/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ */
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Functional keys. -->

<item android:state_single="true" android:state_pressed="true"
android:drawable="@drawable/btn_flat_keyboard_function_key_pressed_fashion_purple" />
<item android:state_single="true"
android:drawable="@drawable/btn_flat_keyboard_function_key_normal_fashion_purple"/>


<!-- Normal keys -->

<item android:state_pressed="true"
android:drawable="@drawable/btn_flat_keyboard_normal_key_pressed_fashion_purple" />
<item
android:drawable="@drawable/btn_flat_keyboard_normal_key_normal_fashion_purple" />

</selector>
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ /*
~ ** Copyright 2015, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/jrywu/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ */
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_pressed="true"
android:drawable="@drawable/btn_flat_keyboard_normal_key_pressed_fashion_purple" />
<item android:drawable="@drawable/btn_flat_keyboard_normal_key_normal_fashion_purple" />
</selector>
30 changes: 30 additions & 0 deletions LimeStudio/app/src/main/res/drawable/btn_voice_fashion_purple.xml
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>

<!--
~ /*
~ *
~ ** Copyright 2016, The LimeIME Open Source Project
~ **
~ ** Project Url: http://github.com/lime-ime/limeime/
~ ** http://android.toload.net/
~ **
~ ** This program is free software: you can redistribute it and/or modify
~ ** it under the terms of the GNU General Public License as published by
~ ** the Free Software Foundation, either version 3 of the License, or
~ ** (at your option) any later version.
~ *
~ ** This program is distributed in the hope that it will be useful,
~ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
~ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ ** GNU General Public License for more details.
~ *
~ ** You should have received a copy of the GNU General Public License
~ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
~ *
~ */
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/sym_keyboard_voice_fashion_purple"/>
<item android:state_pressed="true" android:drawable="@drawable/sym_keyboard_voice_fashion_purple_hl"/>
<item android:state_focused="true" android:drawable="@drawable/sym_keyboard_voice_fashion_purple_hl"/>
</selector>

0 comments on commit a7e81c7

Please sign in to comment.