10 lines
627 B
XML
10 lines
627 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:po="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options">
|
|
|
|
<SolidColorBrush x:Key="LogGrid.InformationBackground" Color="Transparent" po:Freeze="true" />
|
|
<SolidColorBrush x:Key="LogGrid.WarningBackground" Color="DarkGoldenrod" po:Freeze="true" />
|
|
<SolidColorBrush x:Key="LogGrid.ErrorBackground" Color="Chocolate" po:Freeze="true" />
|
|
<SolidColorBrush x:Key="LogGrid.AlertBackground" Color="Firebrick" po:Freeze="true" />
|
|
|
|
</ResourceDictionary> |