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

Commit 2f75cf4b authored by Andrew Sapperstein's avatar Andrew Sapperstein Committed by Android (Google) Code Review
Browse files

Merge "Refactor DeviceDefault themes." into nyc-mr1-dev

parents 55ce4a5f 0114dc52
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 The Android Open Source 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.
-->

<!-- Colors specific to DeviceDefault themes. These are mostly pass-throughs to enable
     overlaying new theme colors. -->
<resources>
    <color name="primary_device_default_dark">@color/primary_material_dark</color>
    <color name="primary_device_default_light">@color/primary_material_light</color>
    <color name="primary_device_default_settings">@color/primary_material_settings</color>
    <color name="primary_dark_device_default_dark">@color/primary_dark_material_dark</color>
    <color name="primary_dark_device_default_light">@color/primary_dark_material_light</color>
    <color name="primary_dark_device_default_settings">@color/primary_dark_material_settings</color>

    <color name="secondary_device_default_settings">@color/secondary_material_settings</color>

    <color name="accent_device_default_light">@color/accent_material_light</color>
    <color name="accent_device_default_dark">@color/accent_material_dark</color>
</resources>
 No newline at end of file
+4 −0
Original line number Diff line number Diff line
@@ -26,9 +26,13 @@

    <color name="primary_material_dark">@color/material_grey_900</color>
    <color name="primary_material_light">@color/material_grey_100</color>
    <color name="primary_material_settings">@color/material_blue_grey_900</color>
    <color name="primary_dark_material_dark">@color/black</color>
    <color name="primary_dark_material_light">@color/material_grey_600</color>
    <color name="primary_dark_material_light_light_status_bar">@color/material_grey_300</color>
    <color name="primary_dark_material_settings">@color/material_blue_grey_950</color>

    <color name="secondary_material_settings">@color/material_blue_grey_800</color>

    <color name="accent_material_light">@color/material_deep_teal_500</color>
    <color name="accent_material_dark">@color/material_deep_teal_200</color>