| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 80 00 00 00 80 08 03 00 00 00 f4 e0 91 | .PNG........IHDR................ |
| 0020 | f9 00 00 00 03 73 42 49 54 08 08 08 db e1 4f e0 00 00 00 09 70 48 59 73 00 00 03 76 00 00 03 76 | .....sBIT.....O.....pHYs...v...v |
| 0040 | 01 7d d5 82 cc 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65 00 77 77 77 2e 69 6e 6b 73 63 61 | .}.......tEXtSoftware.www.inksca |
| 0060 | 70 65 2e 6f 72 67 9b ee 3c 1a 00 00 00 c9 50 4c 54 45 ff ff ff 99 64 59 ff ff ff 99 64 59 89 80 | pe.org..<.....PLTE....dY....dY.. |
| 0080 | 93 99 64 59 84 84 92 b3 b7 bb 99 64 59 86 83 90 99 64 59 99 64 59 99 64 59 86 84 91 86 84 92 85 | ..dY.......dY....dY.dY.dY....... |
| 00a0 | 84 91 99 64 59 b4 b5 bc 86 84 91 99 64 59 99 64 59 5c 54 6a 7f 78 8a 86 84 91 99 64 59 a0 9e a8 | ...dY.......dY.dY\Tj.x.....dY... |
| 00c0 | a1 7c 76 a6 8d 8a a7 8d 8b ac 9e 9f ad 83 7a b1 ae b3 b4 b6 bc b6 b8 be ba bc c2 bb bd c3 c3 c5 | .|v...........z................. |
| 00e0 | ca ca cc d0 cd 94 85 cd 94 86 ce 93 85 ce cf d3 d9 d7 dc d9 da dd da db de dd de e1 e3 e2 e5 e5 | ................................ |
| 0100 | d8 d5 e9 e9 eb f3 f3 f4 f7 f8 f8 fa bf ad fe 50 1b fe 51 1c fe fe fe ff 4f 19 ff 51 1c ff 52 1d | ...............P..Q.....O..Q..R. |
| 0120 | ff 74 4a ff c1 ae ff c2 af ff c2 b0 ff c3 b1 ff c5 b3 ff cd be ff d6 c9 ff ff ff 5a 5f ea 79 00 | .tJ........................Z_.y. |
| 0140 | 00 00 15 74 52 4e 53 00 01 01 03 1a 27 36 3c 4a 65 71 7e b2 b3 bf c3 c8 c9 e6 e6 f6 37 44 03 be | ...tRNS.....'6<Jeq~.........7D.. |
| 0160 | 00 00 02 ac 49 44 41 54 78 da ed 9b 7b 5b da 30 14 c6 11 14 4b 0b 8a 5a 25 ba 79 c1 e2 1c 4e 44 | ....IDATx...{[.0....K..Z%.y...ND |
| 0180 | 70 82 74 6e 60 be ff 87 32 c1 76 1b 25 49 13 9a 8b e2 79 ff 0b 0f c9 fb 6b ee e7 c9 73 4a a5 15 | p.tn`...2.v.%I....y.....k...sJ.. |
| 01a0 | 55 ae 35 f6 5b 89 f6 1b b5 72 c9 b2 36 77 5a 0b da d9 b4 eb 5f ce f8 13 02 bb 7<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Tango.Scripting.IDE.Themes">
<Style x:Key="FocusVisual">
<Setter Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle Margin="2" SnapsToDevicePixels="true" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" StrokeThickness="1" StrokeDashArray="1 2"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="TangoButtonStyle" TargetType="{x:Type Button}">
<Setter Property="FocusVisualStyle" Value="{StaticResource FocusVisual}"/>
<Setter Property="Background" Value="{DynamicResource Button.Static.Background}"/>
<Setter Property="BorderBrush" Value="{DynamicResource Button.Static.Border}"/>
<Setter Property="Foreground" Value="{DynamicResource ControlForegroundKey}"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="Padding" Value="1"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" SnapsToDevicePixels="true">
<ContentPresenter x:Name="contentPresenter" Focusable="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsDefaulted" Value="true">
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource Button.MouseOver.Border}"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource Button.MouseOver.Border}"/>
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter Property="Background" TargetName="border" Value="{DynamicResource Button.Pressed.Background}"/>
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource Button.Pressed.Border}"/>
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Background" TargetName="border" Value="{DynamicResource Button.Disabled.Background}"/>
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource Button.Disabled.Border}"/>
<Setter Property="TextElement.Foreground" TargetName="contentPresenter" Value="{DynamicResource Button.Disabled.Foreground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="TangoToolBarButtonStyle" TargetType="{x:Type Button}">
<Setter Property="Width" Value="26"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" SnapsToDevicePixels="true">
<Grid>
<Rectangle x:Name="background" Fill="Transparent" Opacity="1"/>
<ContentPresenter x:Name="contentPresenter" Focusable="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Grid>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsDefaulted" Value="true">
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Fill" TargetName="background" Value="{DynamicResource Toolbar.Button.MaouseMove.Background}"/>
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter Property="Fill" TargetName="background" Value="{DynamicResource ControlBrushColorKey}"/>
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Background" TargetName="border" Value="{DynamicResource Button.Disabled.Background}"/>
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource Button.Disabled.Border}"/>
<Setter Property="TextElement.Foreground" TargetName="contentPresenter" Value="{DynamicResource Button.Disabled.Foreground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
|