sharee.bike-App/TINKLib/View/Themes/Konrad.xaml

137 lines
5.5 KiB
Plaintext
Raw Normal View History

2022-09-20 13:51:55 +02:00
<?xml version="1.0" encoding="utf-8" ?>
2023-08-31 12:31:38 +02:00
<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.Konrad">
2022-08-30 15:42:25 +02:00
2022-09-20 13:51:55 +02:00
<!--Main color-->
2022-08-30 15:42:25 +02:00
<Color x:Key="primary-back-title-color">#D21113</Color>
2023-09-22 11:38:42 +02:00
<Color x:Key="bright-primary-back-title-color">#D16D6E</Color>
2022-09-20 13:51:55 +02:00
<!--Secondary color-->
2022-08-30 15:42:25 +02:00
<Color x:Key="secondary-back-title-color">#FF0020</Color>
2023-03-08 13:18:54 +01:00
<!--Background color-->
<Color x:Key="background-color">#BEBEBE</Color>
2023-08-31 12:20:06 +02:00
<!--Important text color-->
<Color x:Key="important-text-color">#D21113</Color>
2023-02-22 14:03:35 +01:00
<!--Attention color-->
<Color x:Key="attention-color">#06D1B1</Color>
2023-08-31 12:20:06 +02:00
<!--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">#FC870D</Color>
2022-09-20 13:51:55 +02:00
<!--Primary Button-->
2023-09-22 11:38:42 +02:00
<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>
2022-09-20 13:51:55 +02:00
<!--Secondary Button-->
2023-09-22 11:38:42 +02:00
<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>
2022-08-30 15:42:25 +02:00
2023-07-19 10:10:36 +02:00
<!--Button without outline-->
2023-09-22 11:38:42 +02:00
<Style x:Key="NoOutlineButtonWhite" TargetType="Button">
2023-07-19 10:10:36 +02:00
<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"/>
2023-09-22 11:38:42 +02:00
<Setter Property="BorderColor" Value="White"/>
<Setter Property="BackgroundColor" Value="White"/>
<Setter Property="TextColor" Value="{DynamicResource Key=primary-back-title-color}"/>
</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}"/>
2023-07-19 10:10:36 +02:00
<Setter Property="TextColor" Value="{DynamicResource Key=primary-back-title-color}"/>
</Style>
2022-09-20 13:51:55 +02:00
<!--Switch-->
2022-08-30 15:42:25 +02:00
<Style TargetType="Switch">
<Style.Triggers>
<Trigger TargetType="Switch"
Property="IsToggled"
Value="True">
<Setter Property="ThumbColor" Value="{DynamicResource Key=primary-back-title-color}"/>
2023-09-22 11:38:42 +02:00
<Setter Property="OnColor" Value="{DynamicResource Key=bright-primary-back-title-color}"/>
</Trigger>
2022-08-30 15:42:25 +02:00
<Trigger TargetType="Switch"
Property="IsToggled"
Value="False">
2023-09-22 11:38:42 +02:00
<Setter Property="ThumbColor" Value="DimGray"/>
</Trigger>
2022-08-30 15:42:25 +02:00
</Style.Triggers>
</Style>
2022-09-20 13:51:55 +02:00
<!--Slider-->
2022-08-30 15:42:25 +02:00
<Style TargetType="Slider">
2023-09-22 11:38:42 +02:00
<Setter Property="ThumbColor" Value="{DynamicResource Key=primary-back-title-color}"/>
</Style>
2022-09-20 13:51:55 +02:00
<!--Label-->
2022-08-30 15:42:25 +02:00
<Style TargetType="Label">
<Setter Property="FontSize" Value="Default"/>
</Style>
2022-09-20 13:51:55 +02:00
<!--Flyout Item-->
2022-08-30 15:42:25 +02:00
<Style TargetType="FlyoutItem">
<Setter Property="Shell.BackgroundColor" Value="{DynamicResource Key=secondary-back-title-color}" />
</Style>
2022-09-20 13:51:55 +02:00
<!--Navbar-->
2022-08-30 15:42:25 +02:00
<Style x:Key="Label-Navbar" TargetType="Label">
<Setter Property="FontSize" Value="20"/>
<Setter Property="TextTransform" Value="Uppercase"/>
<Setter Property="TextColor" Value="White"/>
2023-08-31 12:31:38 +02:00
<Setter Property="VerticalOptions" Value="Start"/>
2022-08-30 15:42:25 +02:00
<Setter Property="HorizontalOptions" Value="Start"/>
2023-09-22 11:38:42 +02:00
<Setter Property="Padding" Value="0,14,0,12"/>
2022-08-30 15:42:25 +02:00
</Style>
<Style x:Key="Image-Navbar" TargetType="Image">
2023-09-14 12:28:59 +02:00
<Setter Property="Source" Value="navbar_theme.png"/>
2022-08-30 15:42:25 +02:00
<Setter Property="Aspect" Value="AspectFill"/>
<Setter Property="Grid.ColumnSpan" Value="2"/>
</Style>
2023-08-31 12:31:38 +02:00
<!--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>
2022-09-20 13:51:55 +02:00
</ResourceDictionary>