mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-04 15:05:03 +00:00
df2f3803f4
Most of SourceGen uses standard WPF controls, which get their default style from the system theme. The main disassembly list uses a custom style, and always looks like the Windows default theme. Some people greatly prefer white text on a black background, so we now provide a way to get that. This also requires muting the colors used for Notes, since those were chosen to contrast with black text. This does not affect anything other than the ListView used for code, because everything else can be set through the Windows "personalization" interface. We might want to change the way the Notes window looks though, to avoid having glowing bookmarks on the side.
52 lines
2.5 KiB
XML
52 lines
2.5 KiB
XML
<!--
|
|
Copyright 2019 faddenSoft
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:SourceGen.Res">
|
|
|
|
<!-- colors for ListView and ListViewItem (see CodeListItemStyle.xaml) -->
|
|
<SolidColorBrush x:Key="Brush_ListViewForeground" Color="White"/>
|
|
<SolidColorBrush x:Key="Brush_ListViewBackground" Color="Black"/>
|
|
|
|
<Color x:Key="Color_HoverFill0">#FF787D7F</Color>
|
|
<Color x:Key="Color_HoverFill1">#FF6A787F</Color>
|
|
<Color x:Key="Color_SelectedFill0">#FF6C7A7F</Color>
|
|
<Color x:Key="Color_SelectedFill1">#FF4D6E7D</Color>
|
|
<Color x:Key="Color_SelectedInactiveFill0">#FF777777</Color>
|
|
<Color x:Key="Color_SelectedInactiveFill1">#FF6E6E6E</Color>
|
|
<Color x:Key="Color_SelectedHoverFill0">#FF757C7F</Color>
|
|
<Color x:Key="Color_SelectedHoverFill1">#FF64767E</Color>
|
|
|
|
<Color x:Key="Color_HighlightedCellFill0">#FF6C7F7A</Color>
|
|
<Color x:Key="Color_HighlightedCellFill1">#FF4D7D6E</Color>
|
|
|
|
<!-- I think the selection borders need to stay bright; otherwise it's hard to see
|
|
when you've selected highlighted notes. Dim them a little with alpha. -->
|
|
<SolidColorBrush x:Key="Brush_MouseOverBorder" Color="#7FCCF0FF"/>
|
|
<SolidColorBrush x:Key="Brush_SelectedBorder" Color="#7F98DDFB"/>
|
|
<SolidColorBrush x:Key="Brush_SelectedActiveBorder" Color="#7FCFCFCF"/>
|
|
<SolidColorBrush x:Key="Brush_SelectedMouseOverBorder" Color="#7F98DDFB"/>
|
|
|
|
<!--<SolidColorBrush x:Key="Brush_MouseOverBorder" Color="#FF66787F"/>
|
|
<SolidColorBrush x:Key="Brush_SelectedBorder" Color="#FF4C6E7D"/>
|
|
<SolidColorBrush x:Key="Brush_SelectedActiveBorder" Color="#FF676767"/>
|
|
<SolidColorBrush x:Key="Brush_SelectedMouseOverBorder" Color="#FF4C6E7D"/>-->
|
|
|
|
<SolidColorBrush x:Key="Brush_UpperHighlight" Color="#757F7F7F"/>
|
|
<SolidColorBrush x:Key="Brush_SelectedUpperHighlight" Color="#407F7F7F"/>
|
|
</ResourceDictionary>
|