45 lines
1.9 KiB
XML
45 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Copyright (c) 2024 New Vector Ltd
|
|
~
|
|
~ 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
|
|
~
|
|
~ https://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>
|
|
|
|
<!-- Use a few colors from compoundColorsLight -->
|
|
<!-- DarkColorTokens.colorThemeBg -->
|
|
<color name="colorThemeBg">#FF101317</color>
|
|
<!-- DarkColorTokens.colorGray1400 -->
|
|
<color name="textPrimary">#FFEBEEF2</color>
|
|
<!-- DarkColorTokens.colorGray900 -->
|
|
<color name="textSecondary">#ff808994</color>
|
|
|
|
<style name="Base.Theme.OssLicenses" parent="Theme.MaterialComponents">
|
|
<!-- Background of title bar -->
|
|
<item name="colorPrimary">@color/colorThemeBg</item>
|
|
<!-- Background of the screen -->
|
|
<item name="android:colorBackground">@color/colorThemeBg</item>
|
|
<!-- Text of the licenses -->
|
|
<item name="android:textColor">@color/textSecondary</item>
|
|
<!-- Title, back button and license item text color -->
|
|
<item name="android:textColorPrimary">@color/textPrimary</item>
|
|
<!-- Background of status bar -->
|
|
<item name="android:statusBarColor">@color/colorThemeBg</item>
|
|
<item name="android:windowLightStatusBar">false</item>
|
|
<!-- Background of navigation bar -->
|
|
<item name="android:navigationBarColor">@color/colorThemeBg</item>
|
|
</style>
|
|
|
|
<style name="Theme.OssLicenses" parent="Base.Theme.OssLicenses" />
|
|
|
|
</resources>
|