diff options
| author | Pranav Vashi <neobuddy89@gmail.com> | 2018-07-19 23:17:27 +0300 |
|---|---|---|
| committer | Ali B <abittin@gmail.com> | 2018-07-20 00:06:44 +0300 |
| commit | 4b6d296e1ade041969f0f71eb48f25c84c693097 (patch) | |
| tree | e08ce038aae41049778c2a3edb30b4008470ab40 | |
| parent | 745c7f759b8b6defdac6f2b3d323f286c6b98f2d (diff) | |
Change-Id: Ib48ff2c27c3959571ee56633477e297067d14f30
| -rw-r--r-- | accents/oxygen/Android.mk | 9 | ||||
| -rw-r--r-- | accents/oxygen/AndroidManifest.xml | 34 | ||||
| -rw-r--r-- | accents/oxygen/res/values/colors.xml | 29 |
3 files changed, 72 insertions, 0 deletions
diff --git a/accents/oxygen/Android.mk b/accents/oxygen/Android.mk new file mode 100644 index 0000000..8318e2f --- /dev/null +++ b/accents/oxygen/Android.mk @@ -0,0 +1,9 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_RRO_THEME := LineageOxygenAccent +LOCAL_CERTIFICATE := platform +LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res +LOCAL_PACKAGE_NAME := LineageOxygenAccent + +include $(BUILD_RRO_SYSTEM_PACKAGE) diff --git a/accents/oxygen/AndroidManifest.xml b/accents/oxygen/AndroidManifest.xml new file mode 100644 index 0000000..79ba5e0 --- /dev/null +++ b/accents/oxygen/AndroidManifest.xml @@ -0,0 +1,34 @@ +<!-- + Copyright (c) 2018, The LineageOS Project + Copyright (c) 2018, crDroid Android 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.oxygen" + android:versionCode="1" + android:versionName="1.0"> + + <overlay + android:targetPackage="android" + android:priority="1" /> + + <application + android:hasCode="false" + android:label="@*lineageos.platform:string/accent_oxygen"> + + <meta-data + android:name="lineage_berry_accent_preview" + android:value="#1A96F0" /> + </application> +</manifest> diff --git a/accents/oxygen/res/values/colors.xml b/accents/oxygen/res/values/colors.xml new file mode 100644 index 0000000..123042e --- /dev/null +++ b/accents/oxygen/res/values/colors.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (c) 2018, crDroid Android 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">#1A96F0</color> + <color name="accent_device_default_dark">#1A96F0</color> + <color name="accent_device_default_light">#1A96F0</color> + <color name="material_deep_teal_50">#5BB0EF</color> + <color name="material_deep_teal_100">#53ADEF</color> + <color name="material_deep_teal_200">#2EA0F4</color> + <color name="material_deep_teal_300">#2EA0F4</color> + <color name="material_deep_teal_500">#1A96F0</color> + <color name="material_deep_teal_700">#177DC6</color> + <color name="notification_icon_bg_color">#1A96F0</color> + <color name="system_notification_accent_color">#1A96F0</color> +</resources> |
