Soften login overlay tone
This commit is contained in:
@@ -29,9 +29,10 @@
|
|||||||
<SolidColorBrush x:Key="AccentRedBrush" Color="#FF626E" />
|
<SolidColorBrush x:Key="AccentRedBrush" Color="#FF626E" />
|
||||||
<SolidColorBrush x:Key="AccentVioletBrush" Color="#7B2CBF" />
|
<SolidColorBrush x:Key="AccentVioletBrush" Color="#7B2CBF" />
|
||||||
<SolidColorBrush x:Key="AccentRoseBrush" Color="#F04C8B" />
|
<SolidColorBrush x:Key="AccentRoseBrush" Color="#F04C8B" />
|
||||||
<SolidColorBrush x:Key="LoginSurfaceBrush" Color="#F7F5EE" />
|
<SolidColorBrush x:Key="LoginSurfaceBrush" Color="#DDE5E0D2" />
|
||||||
<SolidColorBrush x:Key="LoginTextBrush" Color="#17101F" />
|
<SolidColorBrush x:Key="LoginFieldBrush" Color="#EEEADF" />
|
||||||
<SolidColorBrush x:Key="LoginMutedBrush" Color="#6C6474" />
|
<SolidColorBrush x:Key="LoginTextBrush" Color="#211827" />
|
||||||
|
<SolidColorBrush x:Key="LoginMutedBrush" Color="#766D7B" />
|
||||||
|
|
||||||
<Style x:Key="PageTitleTextStyle" TargetType="TextBlock">
|
<Style x:Key="PageTitleTextStyle" TargetType="TextBlock">
|
||||||
<Setter Property="FontFamily" Value="Bahnschrift SemiBold" />
|
<Setter Property="FontFamily" Value="Bahnschrift SemiBold" />
|
||||||
|
|||||||
@@ -1006,10 +1006,22 @@
|
|||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Padding="26"
|
Padding="26"
|
||||||
Background="{StaticResource LoginSurfaceBrush}"
|
Background="{StaticResource LoginSurfaceBrush}"
|
||||||
BorderBrush="#66D9B76E"
|
BorderBrush="#44D9B76E"
|
||||||
BorderThickness="1"
|
BorderThickness="1"
|
||||||
CornerRadius="8">
|
CornerRadius="8">
|
||||||
<StackPanel Spacing="16">
|
<StackPanel Spacing="16">
|
||||||
|
<StackPanel.Resources>
|
||||||
|
<SolidColorBrush x:Key="TextControlBackground" Color="#EEEADF" />
|
||||||
|
<SolidColorBrush x:Key="TextControlBackgroundPointerOver" Color="#F3EFE6" />
|
||||||
|
<SolidColorBrush x:Key="TextControlBackgroundFocused" Color="#F3EFE6" />
|
||||||
|
<SolidColorBrush x:Key="TextControlForeground" Color="#211827" />
|
||||||
|
<SolidColorBrush x:Key="TextControlForegroundFocused" Color="#211827" />
|
||||||
|
<SolidColorBrush x:Key="TextControlPlaceholderForeground" Color="#887F8A" />
|
||||||
|
<SolidColorBrush x:Key="TextControlPlaceholderForegroundFocused" Color="#887F8A" />
|
||||||
|
<SolidColorBrush x:Key="TextControlBorderBrush" Color="#2417101F" />
|
||||||
|
<SolidColorBrush x:Key="TextControlBorderBrushPointerOver" Color="#4034293F" />
|
||||||
|
<SolidColorBrush x:Key="TextControlBorderBrushFocused" Color="#7B2CBF" />
|
||||||
|
</StackPanel.Resources>
|
||||||
<Grid ColumnSpacing="12">
|
<Grid ColumnSpacing="12">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="Auto" />
|
<ColumnDefinition Width="Auto" />
|
||||||
@@ -1041,7 +1053,7 @@
|
|||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Border Height="1" Background="#2217101F" />
|
<Border Height="1" Background="#1A17101F" />
|
||||||
|
|
||||||
<StackPanel Spacing="6">
|
<StackPanel Spacing="6">
|
||||||
<TextBlock
|
<TextBlock
|
||||||
@@ -1052,8 +1064,8 @@
|
|||||||
<TextBox
|
<TextBox
|
||||||
x:Name="OperatorNameTextBox"
|
x:Name="OperatorNameTextBox"
|
||||||
MinHeight="42"
|
MinHeight="42"
|
||||||
Background="White"
|
Background="{StaticResource LoginFieldBrush}"
|
||||||
BorderBrush="#2517101F"
|
BorderBrush="#2217101F"
|
||||||
Foreground="{StaticResource LoginTextBrush}"
|
Foreground="{StaticResource LoginTextBrush}"
|
||||||
PlaceholderText="operator"
|
PlaceholderText="operator"
|
||||||
Text="{x:Bind ViewModel.LoginOperatorName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
|
Text="{x:Bind ViewModel.LoginOperatorName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
@@ -1068,8 +1080,8 @@
|
|||||||
<PasswordBox
|
<PasswordBox
|
||||||
x:Name="OperatorPasswordBox"
|
x:Name="OperatorPasswordBox"
|
||||||
MinHeight="42"
|
MinHeight="42"
|
||||||
Background="White"
|
Background="{StaticResource LoginFieldBrush}"
|
||||||
BorderBrush="#2517101F"
|
BorderBrush="#2217101F"
|
||||||
Foreground="{StaticResource LoginTextBrush}"
|
Foreground="{StaticResource LoginTextBrush}"
|
||||||
PlaceholderText="access code" />
|
PlaceholderText="access code" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
@@ -1110,7 +1122,7 @@
|
|||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Background="{StaticResource LoginSurfaceBrush}"
|
Background="{StaticResource LoginSurfaceBrush}"
|
||||||
BorderBrush="#66D9B76E"
|
BorderBrush="#44D9B76E"
|
||||||
BorderThickness="1"
|
BorderThickness="1"
|
||||||
CornerRadius="8">
|
CornerRadius="8">
|
||||||
<StackPanel Spacing="12">
|
<StackPanel Spacing="12">
|
||||||
|
|||||||
Reference in New Issue
Block a user