commit
255e21d5ae
@ -1,11 +0,0 @@
|
||||
<Application
|
||||
x:Class="Semi.Avalonia.Demo.Android.App"
|
||||
xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:Semi.Avalonia.Demo.Android">
|
||||
<Application.Styles>
|
||||
<StyleInclude Source="avares://Semi.Avalonia/Themes/Index.axaml" />
|
||||
<StyleInclude Source="avares://Semi.Avalonia.DataGrid/Index.axaml" />
|
||||
<StyleInclude Source="avares://Semi.Avalonia.ColorPicker/Index.axaml" />
|
||||
</Application.Styles>
|
||||
</Application>
|
@ -4,9 +4,13 @@ using Avalonia.Android;
|
||||
|
||||
namespace Semi.Avalonia.Demo.Android;
|
||||
|
||||
[Activity(Label = "Semi.Avalonia.Demo.Android", Icon = "@drawable/Icon", MainLauncher = true, Theme = "@style/MyTheme.NoActionBar",
|
||||
LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize | ConfigChanges.UiMode)]
|
||||
[Activity(
|
||||
Label = "Semi.Avalonia",
|
||||
Theme = "@style/MyTheme.NoActionBar",
|
||||
Icon = "@drawable/Icon",
|
||||
MainLauncher = true,
|
||||
LaunchMode = LaunchMode.SingleTop,
|
||||
ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize | ConfigChanges.UiMode)]
|
||||
public class MainActivity : AvaloniaMainActivity<App>
|
||||
{
|
||||
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
<UserControl
|
||||
x:Class="Semi.Avalonia.Demo.Android.Views.MainView"
|
||||
xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
d:DesignHeight="450"
|
||||
d:DesignWidth="800"
|
||||
mc:Ignorable="d">
|
||||
Welcome to Avalonia!
|
||||
</UserControl>
|
@ -1,18 +0,0 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace Semi.Avalonia.Demo.Android.Views;
|
||||
|
||||
public partial class MainView : UserControl
|
||||
{
|
||||
public MainView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void InitializeComponent()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
<Application
|
||||
x:Class="Semi.Avalonia.Demo.Desktop.App"
|
||||
xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:Semi.Avalonia.Demo.Desktop"
|
||||
RequestedThemeVariant="Light">
|
||||
<Application.Styles>
|
||||
<!--<StyleInclude Source="avares://Semi.Avalonia/Themes/Index.axaml" />-->
|
||||
<StyleInclude Source="avares://Semi.Avalonia/Themes/Index.axaml" />
|
||||
<StyleInclude Source="avares://Semi.Avalonia.DataGrid/Index.axaml" />
|
||||
<StyleInclude Source="avares://Semi.Avalonia.ColorPicker/Index.axaml" />
|
||||
</Application.Styles>
|
||||
</Application>
|
@ -1,23 +0,0 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Semi.Avalonia.Demo.Views;
|
||||
|
||||
namespace Semi.Avalonia.Demo.Desktop;
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
|
||||
public override void OnFrameworkInitializationCompleted()
|
||||
{
|
||||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
||||
{
|
||||
desktop.MainWindow = new MainWindow();
|
||||
}
|
||||
base.OnFrameworkInitializationCompleted();
|
||||
}
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
<Application
|
||||
x:Class="Semi.Avalonia.Demo.Drm.App"
|
||||
xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
RequestedThemeVariant="Light">
|
||||
|
||||
<Application.Styles>
|
||||
<!--<StyleInclude Source="avares://Semi.Avalonia/Themes/Index.axaml" />-->
|
||||
<StyleInclude Source="avares://Semi.Avalonia/Themes/Index.axaml" />
|
||||
<StyleInclude Source="avares://Semi.Avalonia.DataGrid/Index.axaml" />
|
||||
<StyleInclude Source="avares://Semi.Avalonia.ColorPicker/Index.axaml" />
|
||||
</Application.Styles>
|
||||
</Application>
|
@ -1,24 +0,0 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Semi.Avalonia.Demo.Views;
|
||||
|
||||
namespace Semi.Avalonia.Demo.Drm
|
||||
{
|
||||
public partial class App : Application
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
|
||||
public override void OnFrameworkInitializationCompleted()
|
||||
{
|
||||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
||||
desktop.MainWindow = new MainWindow();
|
||||
else if (ApplicationLifetime is ISingleViewApplicationLifetime singleView)
|
||||
singleView.MainView = new MainView();
|
||||
base.OnFrameworkInitializationCompleted();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Semi.Avalonia.Demo.Views;
|
||||
|
||||
namespace Semi.Avalonia.Demo.Web;
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
|
||||
public override void OnFrameworkInitializationCompleted()
|
||||
{
|
||||
if (ApplicationLifetime is ISingleViewApplicationLifetime singleViewPlatform)
|
||||
{
|
||||
singleViewPlatform.MainView = new MainView();
|
||||
}
|
||||
base.OnFrameworkInitializationCompleted();
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
<Application
|
||||
x:Class="Semi.Avalonia.Demo.Web.App"
|
||||
x:Class="Semi.Avalonia.Demo.App"
|
||||
xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<Application.Styles>
|
@ -1,10 +1,9 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Semi.Avalonia.Demo.Views;
|
||||
|
||||
namespace Semi.Avalonia.Demo.Android;
|
||||
namespace Semi.Avalonia.Demo;
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
@ -15,13 +14,16 @@ public partial class App : Application
|
||||
|
||||
public override void OnFrameworkInitializationCompleted()
|
||||
{
|
||||
if (ApplicationLifetime is ISingleViewApplicationLifetime single)
|
||||
switch (ApplicationLifetime)
|
||||
{
|
||||
single.MainView = new MainView()
|
||||
{
|
||||
|
||||
};
|
||||
case IClassicDesktopStyleApplicationLifetime desktop:
|
||||
desktop.MainWindow = new MainWindow();
|
||||
break;
|
||||
case ISingleViewApplicationLifetime singleView:
|
||||
singleView.MainView = new MainView();
|
||||
break;
|
||||
}
|
||||
|
||||
base.OnFrameworkInitializationCompleted();
|
||||
}
|
||||
}
|
@ -129,22 +129,22 @@
|
||||
<Button.Flyout>
|
||||
<Flyout FlyoutPresenterTheme="{StaticResource LightFlyout}" Placement="Top">
|
||||
<StackPanel>
|
||||
<Label Classes="Amber" Theme="{StaticResource TagLabel}">Amber</Label>
|
||||
<Label Classes="Blue" Theme="{StaticResource TagLabel}">Blue</Label>
|
||||
<Label Classes="Cyan" Theme="{StaticResource TagLabel}">Cyan</Label>
|
||||
<Label Classes="Green" Theme="{StaticResource TagLabel}">Green</Label>
|
||||
<Label Classes="Grey" Theme="{StaticResource TagLabel}">Grey</Label>
|
||||
<Label Classes="Indigo" Theme="{StaticResource TagLabel}">Indigo</Label>
|
||||
<Label Classes="LightBlue" Theme="{StaticResource TagLabel}">LightBlue</Label>
|
||||
<Label Classes="LightGreen" Theme="{StaticResource TagLabel}">LightGreen</Label>
|
||||
<Label Classes="Lime" Theme="{StaticResource TagLabel}">Lime</Label>
|
||||
<Label Classes="Orange" Theme="{StaticResource TagLabel}">Orange</Label>
|
||||
<Label Classes="Red" Theme="{StaticResource TagLabel}">Red</Label>
|
||||
<Label Classes="Pink" Theme="{StaticResource TagLabel}">Pink</Label>
|
||||
<Label Classes="Purple" Theme="{StaticResource TagLabel}">Purple</Label>
|
||||
<Label Classes="Red" Theme="{StaticResource TagLabel}">Red</Label>
|
||||
<Label Classes="Teal" Theme="{StaticResource TagLabel}">Teal</Label>
|
||||
<Label Classes="Violet" Theme="{StaticResource TagLabel}">Violet</Label>
|
||||
<Label Classes="Indigo" Theme="{StaticResource TagLabel}">Indigo</Label>
|
||||
<Label Classes="Blue" Theme="{StaticResource TagLabel}">Blue</Label>
|
||||
<Label Classes="LightBlue" Theme="{StaticResource TagLabel}">LightBlue</Label>
|
||||
<Label Classes="Cyan" Theme="{StaticResource TagLabel}">Cyan</Label>
|
||||
<Label Classes="Teal" Theme="{StaticResource TagLabel}">Teal</Label>
|
||||
<Label Classes="Green" Theme="{StaticResource TagLabel}">Green</Label>
|
||||
<Label Classes="LightGreen" Theme="{StaticResource TagLabel}">LightGreen</Label>
|
||||
<Label Classes="Lime" Theme="{StaticResource TagLabel}">Lime</Label>
|
||||
<Label Classes="Yellow" Theme="{StaticResource TagLabel}">Yellow</Label>
|
||||
<Label Classes="Amber" Theme="{StaticResource TagLabel}">Amber</Label>
|
||||
<Label Classes="Orange" Theme="{StaticResource TagLabel}">Orange</Label>
|
||||
<Label Classes="Grey" Theme="{StaticResource TagLabel}">Grey</Label>
|
||||
<Label Classes="White" Theme="{StaticResource TagLabel}">White</Label>
|
||||
</StackPanel>
|
||||
</Flyout>
|
||||
|
@ -16,6 +16,7 @@
|
||||
</Style>
|
||||
</StackPanel.Styles>
|
||||
<HeaderedContentControl
|
||||
Width="400"
|
||||
Height="400"
|
||||
Margin="16"
|
||||
VerticalAlignment="Top"
|
||||
@ -95,6 +96,7 @@
|
||||
</Grid>
|
||||
</HeaderedContentControl>
|
||||
<HeaderedContentControl
|
||||
Width="400"
|
||||
Height="400"
|
||||
Margin="16"
|
||||
VerticalAlignment="Top"
|
||||
|
@ -1,93 +1,93 @@
|
||||
<ResourceDictionary xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<!-- Typography related resources are combined with TextBlock -->
|
||||
<SolidColorBrush x:Key="LabelTagLightAmberForeground" Color="#784606" />
|
||||
<SolidColorBrush x:Key="LabelTagLightAmberBackground" Opacity="0.15" Color="#F0B114" />
|
||||
<SolidColorBrush x:Key="LabelTagLightBlueForeground" Color="#003D8F" />
|
||||
<SolidColorBrush x:Key="LabelTagLightBlueBackground" Opacity="0.15" Color="#0077FA" />
|
||||
<SolidColorBrush x:Key="LabelTagLightCyanForeground" Color="#004D5B" />
|
||||
<SolidColorBrush x:Key="LabelTagLightCyanBackground" Opacity="0.15" Color="#05A4B6" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreenForeground" Color="#1B5924" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreenBackground" Opacity="0.15" Color="#3BB346" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreyForeground" Color="#2E3238" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreyBackground" Opacity="0.15" Color="#6B7075" />
|
||||
<SolidColorBrush x:Key="LabelTagLightIndigoForeground" Color="#1F2878" />
|
||||
<SolidColorBrush x:Key="LabelTagLightIndigoBackground" Opacity="0.15" Color="#3F51B5" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightBlueForeground" Color="#004B83" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightBlueBackground" Opacity="0.15" Color="#0095EE" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightGreenForeground" Color="#395B1B" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightGreenBackground" Opacity="0.15" Color="#7BB63C" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLimeForeground" Color="#486800" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLimeBackground" Opacity="0.15" Color="#9BD100" />
|
||||
<SolidColorBrush x:Key="LabelTagLightOrangeForeground" Color="#7E3100" />
|
||||
<SolidColorBrush x:Key="LabelTagLightOrangeBackground" Opacity="0.15" Color="#FC8800" />
|
||||
<SolidColorBrush x:Key="LabelTagLightRedForeground" Color="#8E0805" />
|
||||
<SolidColorBrush x:Key="LabelTagLightRedBackground" Opacity="0.15" Color="#F93920" />
|
||||
<SolidColorBrush x:Key="LabelTagLightPinkForeground" Color="#7E053A" />
|
||||
<SolidColorBrush x:Key="LabelTagLightPinkBackground" Opacity="0.15" Color="#E91E63" />
|
||||
<SolidColorBrush x:Key="LabelTagLightPurpleForeground" Color="#5C0F75" />
|
||||
<SolidColorBrush x:Key="LabelTagLightPurpleBackground" Opacity="0.15" Color="#9E28B3" />
|
||||
<SolidColorBrush x:Key="LabelTagLightRedForeground" Color="#8E0805" />
|
||||
<SolidColorBrush x:Key="LabelTagLightRedBackground" Opacity="0.15" Color="#F93920" />
|
||||
<SolidColorBrush x:Key="LabelTagLightTealForeground" Color="#005955" />
|
||||
<SolidColorBrush x:Key="LabelTagLightTealBackground" Opacity="0.15" Color="#00B3A1" />
|
||||
<SolidColorBrush x:Key="LabelTagLightVioletForeground" Color="#6A3AC7" />
|
||||
<SolidColorBrush x:Key="LabelTagLightVioletBackground" Opacity="0.15" Color="#361C8A" />
|
||||
<SolidColorBrush x:Key="LabelTagLightIndigoForeground" Color="#1F2878" />
|
||||
<SolidColorBrush x:Key="LabelTagLightIndigoBackground" Opacity="0.15" Color="#3F51B5" />
|
||||
<SolidColorBrush x:Key="LabelTagLightBlueForeground" Color="#003D8F" />
|
||||
<SolidColorBrush x:Key="LabelTagLightBlueBackground" Opacity="0.15" Color="#0077FA" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightBlueForeground" Color="#004B83" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightBlueBackground" Opacity="0.15" Color="#0095EE" />
|
||||
<SolidColorBrush x:Key="LabelTagLightCyanForeground" Color="#004D5B" />
|
||||
<SolidColorBrush x:Key="LabelTagLightCyanBackground" Opacity="0.15" Color="#05A4B6" />
|
||||
<SolidColorBrush x:Key="LabelTagLightTealForeground" Color="#005955" />
|
||||
<SolidColorBrush x:Key="LabelTagLightTealBackground" Opacity="0.15" Color="#00B3A1" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreenForeground" Color="#1B5924" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreenBackground" Opacity="0.15" Color="#3BB346" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightGreenForeground" Color="#395B1B" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLightGreenBackground" Opacity="0.15" Color="#7BB63C" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLimeForeground" Color="#486800" />
|
||||
<SolidColorBrush x:Key="LabelTagLightLimeBackground" Opacity="0.15" Color="#9BD100" />
|
||||
<SolidColorBrush x:Key="LabelTagLightYellowForeground" Color="#7D6A00" />
|
||||
<SolidColorBrush x:Key="LabelTagLightYellowBackground" Opacity="0.15" Color="#FAC800" />
|
||||
<SolidColorBrush x:Key="LabelTagLightAmberForeground" Color="#784606" />
|
||||
<SolidColorBrush x:Key="LabelTagLightAmberBackground" Opacity="0.15" Color="#F0B114" />
|
||||
<SolidColorBrush x:Key="LabelTagLightOrangeForeground" Color="#7E3100" />
|
||||
<SolidColorBrush x:Key="LabelTagLightOrangeBackground" Opacity="0.15" Color="#FC8800" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreyForeground" Color="#2E3238" />
|
||||
<SolidColorBrush x:Key="LabelTagLightGreyBackground" Opacity="0.15" Color="#6B7075" />
|
||||
<SolidColorBrush x:Key="LabelTagLightWhiteForeground" Color="#1C1F23" />
|
||||
<SolidColorBrush x:Key="LabelTagLightWhiteBackground" Opacity="0.15" Color="#FFFFFF" />
|
||||
<SolidColorBrush x:Key="LabelTagLightWhiteBorderBrush" Color="#C6CACD" />
|
||||
|
||||
<SolidColorBrush x:Key="LabelTagGhostAmberBorderBrush" Color="#F3C341" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostAmberForeground" Color="#F0B114" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostBlueBorderBrush" Color="#3295FB" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostBlueForeground" Color="#0077FA" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostCyanBorderBrush" Color="#2CB8C5" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostCyanForeground" Color="#05A4B6" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreenBorderBrush" Color="#5AC262" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreenForeground" Color="#3BB346" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreyBorderBrush" Color="#888D92" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreyForeground" Color="#6B7075" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostIndigoBorderBrush" Color="#5E6FC4" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostIndigoForeground" Color="#3F51B5" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightBlueBorderBrush" Color="#30ACF1" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightBlueForeground" Color="#0095EE" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightGreenBorderBrush" Color="#93C55B" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightGreenForeground" Color="#7BB63C" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLimeBorderBrush" Color="#A7DA2C" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLimeForeground" Color="#9BD100" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostOrangeBorderBrush" Color="#FDA633" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostOrangeForeground" Color="#FC8800" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostRedBorderBrush" Color="#FA664C" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostRedForeground" Color="#F93920" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostPinkBorderBrush" Color="#ED487B" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostPinkForeground" Color="#E91E63" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostPurpleBorderBrush" Color="#B449C2" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostPurpleForeground" Color="#9E28B3" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostRedBorderBrush" Color="#FA664C" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostRedForeground" Color="#F93920" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostTealBorderBrush" Color="#27C2B0" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostTealForeground" Color="#00B3A1" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostVioletBorderBrush" Color="#885BD2" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostVioletForeground" Color="#6A3AC7" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostIndigoBorderBrush" Color="#5E6FC4" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostIndigoForeground" Color="#3F51B5" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostBlueBorderBrush" Color="#3295FB" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostBlueForeground" Color="#0077FA" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightBlueBorderBrush" Color="#30ACF1" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightBlueForeground" Color="#0095EE" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostCyanBorderBrush" Color="#2CB8C5" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostCyanForeground" Color="#05A4B6" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostTealBorderBrush" Color="#27C2B0" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostTealForeground" Color="#00B3A1" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreenBorderBrush" Color="#5AC262" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreenForeground" Color="#3BB346" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightGreenBorderBrush" Color="#93C55B" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLightGreenForeground" Color="#7BB63C" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLimeBorderBrush" Color="#A7DA2C" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostLimeForeground" Color="#9BD100" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostYellowBorderBrush" Color="#FBDA32" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostYellowForeground" Color="#FAC800" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostAmberBorderBrush" Color="#F3C341" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostAmberForeground" Color="#F0B114" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostOrangeBorderBrush" Color="#FDA633" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostOrangeForeground" Color="#FC8800" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreyBorderBrush" Color="#888D92" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostGreyForeground" Color="#6B7075" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostWhiteBorderBrush" Color="#C6CACD" />
|
||||
<SolidColorBrush x:Key="LabelTagGhostWhiteForeground" Color="#1C1F23" />
|
||||
|
||||
<SolidColorBrush x:Key="LabelTagSolidForeground" Color="#FFFFFF" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidAmberBackground" Color="#F0B114" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidBlueBackground" Color="#0077FA" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidCyanBackground" Color="#05A4B6" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidGreenBackground" Color="#3BB346" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidGreyBackground" Color="#6B7075" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidIndigoBackground" Color="#3F51B5" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidLightBlueBackground" Color="#0095EE" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidLightGreenBackground" Color="#7BB63C" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidLimeBackground" Color="#9BD100" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidOrangeBackground" Color="#FC8800" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidRedBackground" Color="#F93920" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidPinkBackground" Color="#E91E63" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidPurpleBackground" Color="#9E28B3" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidRedBackground" Color="#F93920" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidTealBackground" Color="#00B3A1" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidVioletBackground" Color="#6A3AC7" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidIndigoBackground" Color="#3F51B5" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidBlueBackground" Color="#0077FA" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidLightBlueBackground" Color="#0095EE" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidCyanBackground" Color="#05A4B6" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidTealBackground" Color="#00B3A1" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidGreenBackground" Color="#3BB346" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidLightGreenBackground" Color="#7BB63C" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidLimeBackground" Color="#9BD100" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidYellowBackground" Color="#FAC800" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidAmberBackground" Color="#F0B114" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidOrangeBackground" Color="#FC8800" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidGreyBackground" Color="#6B7075" />
|
||||
|
||||
<SolidColorBrush x:Key="LabelTagSolidWhiteBackground" Color="#FFFFFF" />
|
||||
<SolidColorBrush x:Key="LabelTagSolidWhiteBorderBrush" Color="#C6CACD" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user