mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
184 lines
7.2 KiB
XML
184 lines
7.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ResourceDictionary
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
|
|
x:Class="TINK.Themes.ShareeBike">
|
|
|
|
<!--Main color-->
|
|
<Color x:Key="primary-back-title-color">#009899</Color>
|
|
<Color x:Key="bright-primary-back-title-color">#B5E6E6</Color>
|
|
|
|
<!--Background color-->
|
|
<Color x:Key="background-color">#BEBEBE</Color>
|
|
|
|
<!--Important text color-->
|
|
<Color x:Key="important-text-color">#BF2828</Color>
|
|
|
|
<!--Attention color-->
|
|
<Color x:Key="attention-color">#FC870D</Color>
|
|
|
|
<!--RentalProcess colors-->
|
|
<Color x:Key="process-step-upcoming">#999999</Color>
|
|
<Color x:Key="process-step-active">#0D0D0D</Color>
|
|
<Color x:Key="process-step-succeeded">#5DBF3B</Color>
|
|
<Color x:Key="process-step-failed">#BF2828</Color>
|
|
|
|
<!--Primary Button-->
|
|
<Style TargetType="Button">
|
|
<Setter Property="WidthRequest" Value="400" />
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="BorderWidth" Value="1"/>
|
|
<Setter Property="CornerRadius" Value="10" />
|
|
<Setter Property="FontSize" Value="Medium"/>
|
|
<Setter Property="FontFamily" Value="RobotoRegular"/>
|
|
<Setter Property="BorderColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
<Setter Property="BackgroundColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
<Setter Property="TextColor" Value="White"/>
|
|
<Style.Triggers>
|
|
<Trigger TargetType="Button"
|
|
Property="IsEnabled"
|
|
Value="False">
|
|
<Setter Property="BorderColor" Value="DimGray"/>
|
|
<Setter Property="BackgroundColor" Value="DimGray"/>
|
|
<Setter Property="TextColor" Value="LightGray"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<!--Secondary Button-->
|
|
<Style x:Key="SecondaryButton" TargetType="Button">
|
|
<Setter Property="WidthRequest" Value="400" />
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="BorderWidth" Value="1"/>
|
|
<Setter Property="CornerRadius" Value="10" />
|
|
<Setter Property="FontSize" Value="Medium"/>
|
|
<Setter Property="FontFamily" Value="RobotoRegular"/>
|
|
<Setter Property="BorderColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
<Setter Property="BackgroundColor" Value="White"/>
|
|
<Setter Property="TextColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
<Style.Triggers>
|
|
<Trigger TargetType="Button"
|
|
Property="IsEnabled"
|
|
Value="False">
|
|
<Setter Property="BorderColor" Value="DimGray"/>
|
|
<Setter Property="BackgroundColor" Value="LightGray"/>
|
|
<Setter Property="TextColor" Value="DimGray"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<!--Button without outline-->
|
|
<Style x:Key="NoOutlineButtonWhite" TargetType="Button">
|
|
<Setter Property="WidthRequest" Value="400" />
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="BorderWidth" Value="1"/>
|
|
<Setter Property="CornerRadius" Value="10" />
|
|
<Setter Property="FontSize" Value="Medium"/>
|
|
<Setter Property="FontFamily" Value="RobotoRegular"/>
|
|
<Setter Property="BorderColor" Value="White"/>
|
|
<Setter Property="BackgroundColor" Value="White"/>
|
|
<Setter Property="TextColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
<Style.Triggers>
|
|
<Trigger TargetType="Button"
|
|
Property="IsEnabled"
|
|
Value="False">
|
|
<Setter Property="TextColor" Value="DimGray"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<Style x:Key="NoOutlineButtonBackgroundColor" TargetType="Button">
|
|
<Setter Property="WidthRequest" Value="400" />
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="BorderWidth" Value="1"/>
|
|
<Setter Property="CornerRadius" Value="10" />
|
|
<Setter Property="FontSize" Value="Medium"/>
|
|
<Setter Property="FontFamily" Value="RobotoRegular"/>
|
|
<Setter Property="BorderColor" Value="{DynamicResource Key=background-color}"/>
|
|
<Setter Property="BackgroundColor" Value="{DynamicResource Key=background-color}"/>
|
|
<Setter Property="TextColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
<Style.Triggers>
|
|
<Trigger TargetType="Button"
|
|
Property="IsEnabled"
|
|
Value="False">
|
|
<Setter Property="TextColor" Value="DimGray"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<!--Switch-->
|
|
<Style TargetType="Switch">
|
|
<Style.Triggers>
|
|
<Trigger TargetType="Switch"
|
|
Property="IsToggled"
|
|
Value="True">
|
|
<Setter Property="ThumbColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
<Setter Property="OnColor" Value="{DynamicResource Key=bright-primary-back-title-color}"/>
|
|
</Trigger>
|
|
<Trigger TargetType="Switch"
|
|
Property="IsToggled"
|
|
Value="False">
|
|
<Setter Property="ThumbColor" Value="DimGray"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<!--Slider-->
|
|
<Style TargetType="Slider">
|
|
<Setter Property="ThumbColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
|
</Style>
|
|
|
|
<!--Label-->
|
|
<Style TargetType="Label">
|
|
<Setter Property="FontSize" Value="Default"/>
|
|
<Setter Property="FontFamily" Value="RobotoRegular"/>
|
|
<Style.Triggers>
|
|
<Trigger TargetType="Label"
|
|
Property="FontAttributes"
|
|
Value="Bold">
|
|
<Setter Property="FontFamily" Value="RobotoBold"/>
|
|
</Trigger>
|
|
<Trigger TargetType="Label"
|
|
Property="FontAttributes"
|
|
Value="Italic">
|
|
<Setter Property="FontFamily" Value="RobotoItalic"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<!--Entry-->
|
|
<Style TargetType="Entry">
|
|
<Setter Property="FontSize" Value="Default"/>
|
|
<Setter Property="FontFamily" Value="RobotoRegular"/>
|
|
</Style>
|
|
|
|
<!--Flyout Item-->
|
|
<Style TargetType="FlyoutItem">
|
|
<Setter Property="Shell.BackgroundColor" Value="{DynamicResource Key=primary-back-title-color}" />
|
|
</Style>
|
|
|
|
<!--Navbar-->
|
|
<Style x:Key="Label-Navbar" TargetType="Label">
|
|
<Setter Property="FontSize" Value="20"/>
|
|
<Setter Property="FontFamily" Value="RobotoRegular"/>
|
|
<Setter Property="TextColor" Value="White"/>
|
|
<Setter Property="VerticalOptions" Value="Start"/>
|
|
<Setter Property="HorizontalOptions" Value="Start"/>
|
|
<Setter Property="Padding" Value="0,14,0,12"/>
|
|
</Style>
|
|
<Style x:Key="Image-Navbar" TargetType="Image">
|
|
<Setter Property="Source" Value="navbar_theme.png"/>
|
|
<Setter Property="Aspect" Value="AspectFill"/>
|
|
<Setter Property="Grid.ColumnSpan" Value="2"/>
|
|
</Style>
|
|
|
|
<!--TabbedPage-->
|
|
<Style x:Key="TabbedPageStyle" TargetType="TabbedPage">
|
|
<Setter Property="BarBackgroundColor" Value="White"/>
|
|
<Setter Property="UnselectedTabColor" Value="DimGray"/>
|
|
<Setter Property="SelectedTabColor" Value="{x:DynamicResource primary-back-title-color}"/>
|
|
<Setter Property="android:TabbedPage.ToolbarPlacement" Value="Default"/>
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|