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

Commit c77f7c30 authored by Nishith  Khanna's avatar Nishith Khanna Committed by Nishith Khanna
Browse files

vendor eos: Add /e/OS specific colors

parent b452b431
Loading
Loading
Loading
Loading

config/common.mk

0 → 100644
+19 −0
Original line number Diff line number Diff line
# Copyright (C) 2022 E FOUNDATION
#
# 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.

VENDOR_PATH := vendor/eos

# Overlays
DEVICE_PACKAGE_OVERLAYS += \
    $(VENDOR_PATH)/overlay
+45 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2021  E FOUNDATION
  ~
  ~ 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 <https://www.gnu.org/licenses/>.
  -->

<resources xmlns:tools="http://schemas.android.com/tools">

    <!-- Accent colors -->
    <color name="accent_material_light">#0086FF</color>
    <color name="accent_material_dark">#5DB2FF</color>

    <!-- Primary and Secondary text -->
    <color name="bright_foreground_holo_dark">#DEFFFFFF</color>
    <color name="bright_foreground_holo_light">#DE000000</color>
    <color name="dim_foreground_holo_dark">#99FFFFFF</color>
    <color name="dim_foreground_holo_light">#99000000</color>

    <!-- Background color -->
    <color name="background_material_dark">#121212</color>
    <color name="background_material_light">#FAFAFA</color>

    <!-- Dialog/Popup colors -->
    <color name="background_floating_material_dark">#1E1E1E</color>
    <color name="background_floating_material_light">#FFFFFF</color>

    <!-- Action/Status Bar colors colorPrimary and colorPrimarDark -->
    <color name="primary_material_dark">#272727</color>
    <color name="primary_material_light">#FFFFFF</color>
    <color name="primary_dark_material_dark">#272727</color>
    <color name="primary_dark_material_light">#FFFFFF</color>

</resources>