You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
etesync-android/app/src/main/res/values/styles.xml

108 lines
3.6 KiB

<!--
~ Copyright (c) 2013 2016 Ricki Hirner (bitfire web engineering).
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the GNU Public License v3.0
~ which accompanies this distribution, and is available at
~ http://www.gnu.org/licenses/gpl.html
-->
<resources>
<!-- colors -->
<!-- FIXME: Colours are no longer correctly named. -->
<color name="green700">#ffa100</color>
<color name="light_green300">#ffd54f</color>
<color name="light_green500">#ffc107</color>
<color name="light_green700">#ffa100</color>
<color name="orange400">#29b6f6</color>
<color name="orangeA700">#0288d1</color>
<color name="grey200">#eeeeee</color>
<color name="grey700">#616161</color>
<!-- preference-v14 uses this color for categories text -->
<color name="preference_fallback_accent_color">@color/orangeA700</color>
<!-- app theme -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="alertDialogTheme">@style/AppTheme.Dialog.Alert</item>
<item name="colorPrimary">@color/light_green500</item>
<item name="colorPrimaryDark">@color/light_green700</item>
<item name="colorAccent">@color/orangeA700</item>
<item name="android:textColorPrimary">@drawable/text_color</item>
<item name="android:textColorSecondary">@color/grey700</item>
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<!-- dialogs -->
<style name="AppTheme.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/orangeA700</item>
</style>
<!-- AddAccountActivity -->
<style name="login_type_headline">
<item name="android:textSize">22sp</item>
</style>
<style name="account_list_card">
<item name="android:layout_width">match_parent</item>
</style>
<!-- stepper (wizard) -->
<style name="stepper_nav_bar">
<item name="android:background">@color/grey200</item>
</style>
<style name="stepper_nav_button">
<item name="android:layout_margin">8dp</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:background">?android:attr/selectableItemBackground</item>
<item name="android:paddingTop">8dp</item>
<item name="android:paddingLeft">4dp</item>
<item name="android:paddingRight">4dp</item>
<item name="android:paddingBottom">8dp</item>
<item name="android:textAllCaps">true</item>
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
<item name="android:textColor">@color/buttontext</item>
</style>
<!-- widgets -->
<style name="tablayout" parent="Base.Widget.Design.TabLayout">
<item name="android:background">@color/light_green700</item>
</style>
<style name="toolbar_theme">
<item name="android:textColorSecondary">@android:color/white</item>
</style>
<style name="toolbar_style" parent="Widget.AppCompat.Toolbar">
<item name="android:background">@color/light_green700</item>
<item name="titleTextColor">@android:color/white</item>
</style>
<!-- text content -->
<style name="TextView.Heading" parent="AppTheme">
<item name="android:textSize">22sp</item>
<item name="android:textColor">@color/orangeA700</item>
</style>
</resources>