diff options
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/attrs.xml | 40 | ||||
-rw-r--r-- | res/values/colors.xml | 29 | ||||
-rw-r--r-- | res/values/dimens.xml | 22 | ||||
-rw-r--r-- | res/values/strings.xml | 51 | ||||
-rw-r--r-- | res/values/styles.xml | 111 |
5 files changed, 253 insertions, 0 deletions
diff --git a/res/values/attrs.xml b/res/values/attrs.xml new file mode 100644 index 0000000..0c474be --- /dev/null +++ b/res/values/attrs.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * Copyright (C) 2014 The CyanogenMod Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +--> +<resources> + + <!-- Attributes for Sliding Panel --> + <declare-styleable name="SlidingUpPanelLayout"> + <attr name="collapsedHeight" format="dimension" /> + <attr name="shadowHeight" format="dimension" /> + <attr name="fadeColor" format="color" /> + <attr name="flingVelocity" format="integer" /> + <attr name="dragView" format="reference" /> + <attr name="startExpanded" format="boolean" /> + <attr name="anchorPoint" format="float" /> + <attr name="parallaxDistance" format="dimension" /> + </declare-styleable> + + <!-- Attributes for Drawer List --> + <declare-styleable name="DrawerItem"> + <attr name="id" format="reference" /> + <attr name="title" format="string" /> + <attr name="icon" format="reference" /> + <attr name="fragmentName" format="string" /> + <attr name="component" format="string" /> + </declare-styleable> + +</resources>
\ No newline at end of file diff --git a/res/values/colors.xml b/res/values/colors.xml new file mode 100644 index 0000000..e032555 --- /dev/null +++ b/res/values/colors.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * Copyright (C) 2014 The CyanogenMod Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +--> +<resources> + <color name="detailedview_pager_background">#ffffff</color> + <color name="title_author_background">#ffffff</color> + <color name="offwhite">#e9e8e8</color> + <color name="author_grey">#808184</color> + + <color name="apply_button_text_color_enabled">#ffffff</color> + <color name="apply_button_text_color_disabled">#bbbbbb</color> + + <color name="apply_button_progress_color">#6bd1e9</color> + <color name="apply_button_default_color">#00b1e5</color> + <color name="apply_button_pressed_color">#008ef2</color> +</resources> diff --git a/res/values/dimens.xml b/res/values/dimens.xml new file mode 100644 index 0000000..38e2f4b --- /dev/null +++ b/res/values/dimens.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * Copyright (C) 2014 The CyanogenMod Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +--> +<resources> + <dimen name="app_icon_size">24dp</dimen> + <dimen name="button_bar_height">62dip</dimen> + <dimen name="sliding_up_panel_parallax_distance">150dp</dimen> + <dimen name="item_browse_height">260dp</dimen> +</resources> diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100644 index 0000000..481b4c9 --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The CyanogenMod Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources> + + <string name="app_name">Themes</string> + + <!-- Themable items --> + <string name="lock_screen">Lock screen</string> + <string name="icons">Icons</string> + <string name="fonts">Fonts</string> + <string name="wallpapers">Wallpapers</string> + <string name="boot_anims">Boot animations</string> + <string name="ringtones">Ringtones</string> + <string name="notifications">Notifications</string> + <string name="alarms">Alarms</string> + <string name="style">Style</string> + + <string name="apply">Apply</string> + <string name="applying">Applying</string> + <string name="remove">Remove</string> + <string name="update">Update</string> + + <!-- Audibles preview --> + <string name="alarm_label">Alarm</string> + <string name="notification_label">Notification</string> + <string name="ringtone_label">Ringtone</string> + + <string name="unknown_author">Author unknown</string> + + <string name="font_preview_letters">AaBbCcDd123</string> + + <string name="no_boot_animation_preview">No preview available</string> + + <string name="theme_installed_notification_title">%s installed</string> + <string name="theme_installed_notification_text">Theme successfully installed.</string> + +</resources> diff --git a/res/values/styles.xml b/res/values/styles.xml new file mode 100644 index 0000000..bcf0dba --- /dev/null +++ b/res/values/styles.xml @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * Copyright (C) 2014 The CyanogenMod Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Base application theme. --> + <style name="AppTheme" parent="android:style/Theme.Holo.Light"> + <item name="android:actionBarStyle">@style/ThemeChooserActionBar</item> + <item name="android:actionBarTabTextStyle">@style/ThemeChooserActionBarTabText</item> + <item name="android:actionMenuTextColor">#333333</item> + <item name="android:windowContentOverlay">@null</item> + <item name="android:windowActionBarOverlay">false</item> + </style> + + <style name="ThemeChooserActionBar" parent="@android:style/Widget.Holo.Light.ActionBar"> + <item name="android:displayOptions">useLogo|showHome|showTitle</item> + <item name="android:background">#BB000000</item> + <item name="android:titleTextStyle">@style/ThemeChooserActionBarTitleText</item> + <item name="android:logo">@drawable/ic_app_themes_bw</item> + </style> + + <!-- ActionBar title text --> + <style name="ThemeChooserActionBarTitleText"> + <item name="android:textColor">#FFFFFF</item> + </style> + + <!-- ActionBar tabs text styles --> + <style name="ThemeChooserActionBarTabText"> + <item name="android:textColor">#FFFFFF</item> + </style> + + <style name="mixnmatch_menu_btn" parent="@android:style/Widget.Holo.Light.Button.Borderless.Small"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">103dp</item> + <item name="android:background">#d2d2c8</item> + <item name="android:padding">8dp</item> + </style> + + + <style name="mixnmatch_menu_btn_icon"> + <item name="android:layout_height">match_parent</item> + <item name="android:layout_width">20dp</item> + <item name="android:layout_marginRight">8dp</item> + <item name="android:layout_alignParentTop">true</item> + <item name="android:layout_alignParentBottom">true</item> + </style> + + + <style name="mixnmatch_menu_firstline"> + <item name="android:textSize">16sp</item> + <item name="android:textColor">#3e3e3e</item> + </style> + + <style name="mixnmatch_menu_secondline"> + <item name="android:textSize">14sp</item> + <item name="android:textColor">#656666</item> + </style> + + <style name="mixnmatch_menu_btn_left" parent="@style/mixnmatch_menu_btn"> + <item name="android:layout_marginRight">4dp</item> + </style> + + <style name="mixnmatch_menu_btn_right" parent="@style/mixnmatch_menu_btn"> + <item name="android:layout_marginRight">4dp</item> + </style> + + <style name="drawer_footer"> + <item name="android:background">#75e5bb</item> + <item name="android:textColor">#FFFFFF</item> + <item name="android:gravity">left</item> + <item name="android:textSize">24sp</item> + <item name="android:paddingLeft">10dp</item> + <item name="android:paddingTop">20dp</item> + <item name="android:paddingBottom">20dp</item> + </style> + + <style name="drawer_header"> + <item name="android:background">#19d38e</item> + <item name="android:textColor">#FFFFFF</item> + <item name="android:gravity">left</item> + <item name="android:textSize">30sp</item> + <item name="android:paddingLeft">10dp</item> + <item name="android:paddingTop">10dp</item> + <item name="android:paddingBottom">10dp</item> + </style> + + <style name="drawer_list_item"> + <item name="android:background">#19d38e</item> + <item name="android:gravity">left</item> + <item name="android:textSize">30sp</item> + <item name="android:paddingLeft">10dp</item> + </style> + + <style name="drawer_list_item_text"> + <item name="android:textColor">#FFFFFF</item> + </style> + +</resources> |