diff options
| author | mosimchah <mosimchah@gmail.com> | 2018-05-30 04:44:35 -0400 |
|---|---|---|
| committer | mosimchah <mosimchah@gmail.com> | 2018-05-30 17:08:20 -0400 |
| commit | 17d5ba4412942089695a41b4007adf7c2f6f18ba (patch) | |
| tree | ccc41e530c09d532a79d2dacdf23ad717873fe0f | |
| parent | 040d8a9cc9b3540dd085ce1dfd8727bd18ec00c7 (diff) | |
Berry: Add gold, and lava color accents 1/3
Change-Id: I46be614b6aa9d28ee23b121b5f6b5af068fb8135
| -rw-r--r-- | accents/gold/Android.mk | 9 | ||||
| -rw-r--r-- | accents/gold/AndroidManifest.xml | 33 | ||||
| -rw-r--r-- | accents/gold/res/values/colors.xml | 25 | ||||
| -rw-r--r-- | accents/lava/Android.mk | 9 | ||||
| -rw-r--r-- | accents/lava/AndroidManifest.xml | 33 | ||||
| -rw-r--r-- | accents/lava/res/values/colors.xml | 25 |
6 files changed, 134 insertions, 0 deletions
diff --git a/accents/gold/Android.mk b/accents/gold/Android.mk new file mode 100644 index 0000000..2e9c290 --- /dev/null +++ b/accents/gold/Android.mk @@ -0,0 +1,9 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_RRO_THEME := LineageGoldAccent +LOCAL_CERTIFICATE := platform +LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res +LOCAL_PACKAGE_NAME := LineageGoldAccent + +include $(BUILD_RRO_SYSTEM_PACKAGE) diff --git a/accents/gold/AndroidManifest.xml b/accents/gold/AndroidManifest.xml new file mode 100644 index 0000000..19246e5 --- /dev/null +++ b/accents/gold/AndroidManifest.xml @@ -0,0 +1,33 @@ +<!-- + Copyright (c) 2018, The LineageOS 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. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="org.lineageos.overlay.accent.gold" + android:versionCode="1" + android:versionName="1.0"> + + <overlay + android:targetPackage="android" + android:priority="1" /> + + <application + android:hasCode="false" + android:label="@*lineageos.platform:string/accent_gold"> + + <meta-data + android:name="lineage_berry_accent_preview" + android:value="#CFB53B" /> + </application> +</manifest> diff --git a/accents/gold/res/values/colors.xml b/accents/gold/res/values/colors.xml new file mode 100644 index 0000000..41b81ac --- /dev/null +++ b/accents/gold/res/values/colors.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (c) 2018, The LineageOS 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="accent_device_default_700">#CFB53B</color> + <color name="accent_device_default_dark">#CFB53B</color> + <color name="accent_device_default_light">#CFB53B</color> + <color name="material_deep_teal_200">#CFB53B</color> + <color name="material_deep_teal_500">#CFB53B</color> + <color name="notification_icon_bg_color">#CFB53B</color> + <color name="system_notification_accent_color">#CFB53B</color> +</resources> diff --git a/accents/lava/Android.mk b/accents/lava/Android.mk new file mode 100644 index 0000000..a756cd7 --- /dev/null +++ b/accents/lava/Android.mk @@ -0,0 +1,9 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_RRO_THEME := LineageLavaAccent +LOCAL_CERTIFICATE := platform +LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res +LOCAL_PACKAGE_NAME := LineageLavaAccent + +include $(BUILD_RRO_SYSTEM_PACKAGE) diff --git a/accents/lava/AndroidManifest.xml b/accents/lava/AndroidManifest.xml new file mode 100644 index 0000000..5d7df9e --- /dev/null +++ b/accents/lava/AndroidManifest.xml @@ -0,0 +1,33 @@ +<!-- + Copyright (c) 2018, The LineageOS 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. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="org.lineageos.overlay.accent.lava" + android:versionCode="1" + android:versionName="1.0"> + + <overlay + android:targetPackage="android" + android:priority="1" /> + + <application + android:hasCode="false" + android:label="@*lineageos.platform:string/accent_lava"> + + <meta-data + android:name="lineage_berry_accent_preview" + android:value="#D7232F" /> + </application> +</manifest> diff --git a/accents/lava/res/values/colors.xml b/accents/lava/res/values/colors.xml new file mode 100644 index 0000000..590ac2a --- /dev/null +++ b/accents/lava/res/values/colors.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (c) 2018, The LineageOS 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="accent_device_default_700">#D7232F</color> + <color name="accent_device_default_dark">#D7232F</color> + <color name="accent_device_default_light">#D7232F</color> + <color name="material_deep_teal_200">#D7232F</color> + <color name="material_deep_teal_500">#D7232F</color> + <color name="notification_icon_bg_color">#D7232F</color> + <color name="system_notification_accent_color">#D7232F</color> +</resources> |
