-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDarkMicaSolid.xaml
593 lines (482 loc) · 26.7 KB
/
DarkMicaSolid.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:PresentationOptions="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options"
xmlns:m="clr-namespace:ModernWpf.Markup;assembly=modernwpf"
xmlns:s="clr-namespace:System;assembly=mscorlib">
<!-- Dark base -->
<!-- Keep the above line, and change depending on if Light or Dark theme; case sensitive -->
<!--
Theme Author: Milos Paripovic (Change to your name if you edit it)
Copy the whole Theme folder from /Themes/ and do mods there (themes with same name as official ones will be overwritten on program update)
If the syntax is broken, it will load default theme (may cause crashes also)
Keys may change in the future.
You can use color chart from http://i.msdn.microsoft.com/dynimg/IC210551.png
so instead of Color="#000000" you can write Color="Black"
Brushes can be any XAML color brush type, including gradients, values can be RGB or ARGB
Suggestion: Use Notepad++ with XML coloring, or other code editor with syntax highlighting
Pressing Ctrl+Shift+Alt+F5 reloads the theme so it is useful for editing themes, but not all keys will be reloaded as some require a restart
-->
<Thickness x:Key="WindowPadding">1,1,0,1</Thickness>
<!-- margin/padding in XAML is in order Left,Top,Right,Bottom -->
<SolidColorBrush x:Key="WindowBorderBrush" Color="{m:DynamicColor SystemAccentColor}" />
<SolidColorBrush x:Key="AccentBrush" Color="{m:DynamicColor SystemAccentColor}" />
<Thickness x:Key="WindowBorderThickness">1</Thickness>
<SolidColorBrush x:Key="WindowAcrylicTintBrush" Color="#a0000000" />
<!-- when window is not focused it will show the MainBackgroundBrush -->
<SolidColorBrush x:Key="MainBackgroundBrush" Color="#2D2B2E" />
<!-- for other windows that don't have Acrylic effect -->
<SolidColorBrush x:Key="DialogBackgroundBrush" Color="#3d3b40" />
<SolidColorBrush x:Key="SidebarBackgroundBrush" Color="Transparent" />
<!-- Set to Transparent to have Acrylic effect on side -->
<SolidColorBrush x:Key="PathEditPopupBackgroundBrush" Color="#3d3b40" />
<SolidColorBrush x:Key="TextPrimaryBrush" Color="#ffffff" />
<!-- Main style for text; Foreground color should be same as TextPrimaryBrush -->
<Style x:Key="{x:Type TextBlock}" TargetType="TextBlock">
<Setter Property="Foreground" Value="{DynamicResource TextPrimaryBrush}" />
</Style>
<!-- Highlighted Text, like GB portion of file size, or number of selected files. Can be the same as TextPrimaryBrush to keep the same color -->
<SolidColorBrush x:Key="TextImportantBrush" Color="#2b292e" />
<!-- Secondary Text, like extension in File, or path in Favorites -->
<SolidColorBrush x:Key="TextUnimportantBrush" Color="#cacaca" />
<!-- For grid view only for now. I use value from CurrentFolderPanelBackgroundBrush (unless transparent) and add BE in front to give it transparency -->
<SolidColorBrush x:Key="TextBackgroundOverlayBrush" Color="#BE2b292e" />
<LinearGradientBrush x:Key="FadingHorizontalGradient" StartPoint="0,0" EndPoint="1,0">
<GradientStop Offset="0" Color="#00000000" />
<GradientStop Offset=".5" Color="#55000000" />
<GradientStop Offset="1" Color="#00000000" />
</LinearGradientBrush>
<LinearGradientBrush x:Key="FadingVerticalGradient" StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#00000000" />
<GradientStop Offset=".5" Color="#55000000" />
<GradientStop Offset="1" Color="#00000000" />
</LinearGradientBrush>
<!-- Sidebar - Favorites -->
<!-- Favorites Group -->
<Thickness x:Key="FavoritesPanelMargin">0,0,8,0</Thickness>
<!--
At least 1 for top so the New Group button doesn't blend with last Fav group
8 on the side for a narrow scrollbar that appears when not all favs can fit vertically in the window
-->
<s:Double x:Key="SidebarCollapsedWidth">38</s:Double>
<!-- Should be minimum button width + SidebarResizerBorder Thickness -->
<Style x:Key="PathPanelGroupBorder" TargetType="{x:Type Border}">
<Setter Property="Background" Value="#05ffffff" />
<Setter Property="Margin" Value="12,0,12,12" />
<Setter Property="Padding" Value="4,8,4,8" />
<Setter Property="CornerRadius" Value="4" />
</Style>
<Style x:Key="PathPanelGroupTitle" TargetType="{x:Type TextBlock}">
<!-- BasedOn="{StaticResource {x:Type TextBlock}}"> Can't be DynamicResource :/ -->
<Setter Property="Margin" Value="4,-6,0,0" />
<Setter Property="FontWeight" Value="Bold" />
<!--<Setter Property="FontSize" Value="16" />-->
<Setter Property="Foreground" Value="{DynamicResource SystemControlPageTextBaseHighBrush}" />
</Style>
<SolidColorBrush x:Key="PathPanelItemBackgroundBrush" Color="Transparent" />
<!-- Can be Transparent or a shade similar to background of PathPanelGroupBorder -->
<!-- File Browser Panel -->
<SolidColorBrush x:Key="CurrentFolderPanelBackgroundBrush" Color="Transparent" />
<SolidColorBrush x:Key="NavigationPanelBackgroundBrush.StandardLayout" Color="Transparent" />
<SolidColorBrush x:Key="NavigationPanelBackgroundBrush.ColumnsLayout" Color="Transparent" />
<!-- Will be visible only when there is no Files Panel is covering it -->
<Style x:Key="FilesPanelBorder" TargetType="{x:Type Border}">
<Setter Property="Background" Value="Transparent" />
<!-- Should not be transparent or the panels will overlap on animation and will look bad -->
</Style>
<!--
This is a fake shadow made with a gradient on the right side of Files Panel
(much faster than shadow effect)
It also includes border in the accent color (see BorderThickness)
-->
<Style x:Key="FilesPanelEdgeBorder" TargetType="{x:Type Border}">
<Setter Property="Margin" Value="0,0,0,0" />
<!--<Setter Property="BorderThickness" Value="0,0,2,0" />
<Setter Property="BorderBrush" Value="{DynamicResource SystemControlForegroundAccentBrush}" />
-->
<Setter Property="HorizontalAlignment" Value="Right" />
<Setter Property="Width" Value="16" />
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
<!-- This one should blend in with FilesPanelBorder so make it the same -->
<GradientStop Offset="0" Color="#00000000" />
<GradientStop Offset=".9" Color="#55000000" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
<Setter Property="OpacityMask">
<Setter.Value>
<LinearGradientBrush MappingMode="Absolute" StartPoint="0,0" EndPoint="0,44">
<GradientStop Offset="0" Color="#00000000" />
<GradientStop Offset="1" Color="#ff000000" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Style>
<!-- top of the fake shadow is faded out with this -->
<Style x:Key="FilesPanelEdgeTopBorder" TargetType="{x:Type Border}">
<!--<Setter Property="BorderThickness" Value="0,1,0,0"/>
<Setter Property="BorderBrush" >
<Setter.Value>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
<GradientStop Offset="0" Color="#00000000" />
<GradientStop Offset="1" Color="#44000000" />
</LinearGradientBrush>
</Setter.Value>
</Setter>-->
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Height" Value="2" />
<!-- -->
</Style>
<!-- Changing height requires program restart for columns exxpanding to be properly set. ButtonMinSize+2 works well -->
<s:Double x:Key="FilesPanelTitleHeight">26</s:Double>
<Thickness x:Key="FilesPanelSortControlMargin">0,32,0,0</Thickness>
<Thickness x:Key="FilesPanelContentMargin">0,54,0,0</Thickness>
<Style x:Key="FilesPanelTitle" TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="10,4,0,0" />
<!--<Setter Property="FontSize" Value="18" />-->
<Setter Property="Foreground" Value="{DynamicResource SystemControlPageTextBaseHighBrush}" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Foreground" Value="{StaticResource AccentBrush}" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="FilesPanelPathSeparator" TargetType="{x:Type TextBlock}">
<Setter Property="Text" Value="\" />
<!-- Here you can set another path separator like > -->
<Setter Property="Margin" Value="0,4,0,0" />
<!--<Setter Property="FontSize" Value="18" />-->
<Setter Property="Foreground" Value="{DynamicResource TextUnimportantBrush}" />
</Style>
<Style x:Key="PreviewPanelBorder" TargetType="{x:Type Border}">
<Setter Property="Background" Value="Transparent" />
</Style>
<Style x:Key="PreviewPanelBorder.ColumnsLayout" TargetType="{x:Type Border}">
<Setter Property="Background" Value="Transparent" />
<!-- Make the same as FilesPanelBorder Background to make it seem like one -->
</Style>
<s:Double x:Key="PreviewPanelMinHeight">28</s:Double>
<!-- This is container for all popups, like New Folder, New File, Rename... -->
<Style x:Key="PopupPanelBorder" TargetType="{x:Type Border}">
<Setter Property="Background" Value="#333333" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="#000000" />
<Setter Property="Effect" Value="{DynamicResource PopupShadowEffect}" />
</Style>
<!-- for files/folders within Files Panels -->
<Thickness x:Key="ListItemMargin">8,0,0,0</Thickness>
<!-- To disable "Zebra lines" make the next two the same -->
<SolidColorBrush x:Key="ListItemEvenBackgroundBrush" Color="Transparent" />
<SolidColorBrush x:Key="ListItemOddBackgroundBrush" Color="Transparent" />
<!-- item background when you make ToDo files -->
<SolidColorBrush x:Key="ListItemToDoBackgroundBrush" Color="#ccffc932" />
<SolidColorBrush x:Key="ListItemToDoDoneBackgroundBrush" Color="#ccdeaf2c" />
<SolidColorBrush x:Key="ListItemToDoForegroundBrush" Color="#000000" />
<!-- File/Path effect on mouseOver. Set ShadowDepth and Opacity 0 to turn off -->
<DropShadowEffect
x:Key="HoverItemEffect"
BlurRadius="25"
Direction="235"
Opacity="1"
ShadowDepth="2"
Color="Black" />
<!-- For dialogs/popups -->
<DropShadowEffect
x:Key="PopupShadowEffect"
BlurRadius="20"
Direction="270"
Opacity=".85"
ShadowDepth="5"
Color="Black" />
<Thickness x:Key="ShadowThickness">20,10,20,30</Thickness>
<Style x:Key="ContextMenuBorder" TargetType="Border">
<!-- This is not Shell Context menu - no way to change that yet -->
<Setter Property="BorderThickness" Value="0" />
<Setter Property="Background" Value="{DynamicResource DialogBackgroundBrush}" />
<Setter Property="Padding" Value="0,4,0,4" />
<Setter Property="CornerRadius" Value="4" />
</Style>
<!--<SolidColorBrush x:Key="MenuFlyoutPresenterBackground" Color="#ccdeaf2c" />-->
<!-- For now only to control the corner radius; may be removed in the future -->
<Style x:Key="ItemSelectionBorder" TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="4,0,0,4" />
</Style>
<!-- Base folder style in Files Panel -->
<Style x:Key="FolderItemDefaultBorder" TargetType="{x:Type Border}">
<!-- Uncomment for a border around folders only -->
<!--<Setter Property="BorderBrush" Value="Green"/>
<Setter Property="BorderThickness" Value="1,1,0,1" />
<Setter Property="CornerRadius" Value="5,0,0,5" />
<Setter Property="Margin" Value="-0.5" /> to avoid double border-->
<Setter Property="Background" Value="Transparent" />
<!-- Background must be defined, even transparent, in order for drag&drop to work -->
</Style>
<!-- Folder style when selected in ancestor (non-current) Files Panel -->
<Style x:Key="FolderItemSelectedBorder" TargetType="{x:Type Border}">
<!--<Setter Property="CornerRadius" Value="3,0,0,3" />
<Setter Property="BorderThickness" Value="0,0,2,0" />
<Setter Property="BorderBrush" Value="{DynamicResource SystemControlForegroundAccentBrush}" />-->
<Setter Property="Margin" Value="0,0,-2,0" />
<!-- This is so that border of selected folder in column doesn't go over the edge of the panel on the right -->
<Setter Property="Background" Value="{DynamicResource AccentBrush}" />
<Setter Property="Effect" Value="{DynamicResource HoverItemEffect}" />
</Style>
<!--
Folder style when selected in current (most-right) Files Panel
Set CornerRadius to 0 for sharp edges
-->
<Style x:Key="FolderItemSelectedInCurrentBorder" TargetType="{x:Type Border}">
<!--<Setter Property="CornerRadius" Value="2,0,0,2" />-->
<!--<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="Black" />-->
<Setter Property="Background" Value="Transparent" />
</Style>
<!-- Tabs -->
<Style x:Key="ProgramNameBorder" TargetType="{x:Type Border}">
<Setter Property="Height" Value="32" />
<Setter Property="Margin" Value="18,0,23,0" />
<!--for doubleclick to maximize-->
<Setter Property="Background" Value="Transparent" />
</Style>
<Style x:Key="TabsContainerBorder" TargetType="{x:Type Border}">
<Setter Property="Height" Value="28" />
<Setter Property="Margin" Value="0,0,0,0" />
<!-- if we add margin here, then shadows are cropped -->
<Setter Property="Padding" Value="0,0,0,0" />
</Style>
<Thickness x:Key="TabItemPadding">6,0,6,0</Thickness>
<!-- was 4,4,28,0 to leave space for close button -->
<Style x:Key="TabItemDefaultBorder" TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="4" />
<!-- Set CornerRadius to 0 for sharp edges -->
<Setter Property="CornerRadius" Value="0,0,0,0" />
<Setter Property="BorderBrush" Value="{StaticResource FadingVerticalGradient}" />
<!-- Value="#3E3C41" -->
<Setter Property="BorderThickness" Value=".5,0,.5,0" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="Margin" Value="0,0,0,0" />
<!-- These 5 if you want just line separated tabs -->
</Style>
<Style x:Key="TabItemHoverBorder" TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="0" />
<Setter Property="BorderBrush" Value="#3E3C41" />
<Setter Property="BorderThickness" Value="1,0,1,0" />
<Setter Property="Background" Value="#3E3C41" />
<Setter Property="Padding" Value="0,2,0,0" />
<Setter Property="Margin" Value="-1,2,-1,1" />
<Setter Property="Effect" Value="{DynamicResource HoverItemEffect}" />
</Style>
<Style x:Key="TabItemSelectedBorder" TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="0,0,0,0" />
<Setter Property="BorderBrush" Value="{DynamicResource AccentBrush}" />
<Setter Property="BorderThickness" Value="0,2,0,0" />
<Setter Property="Padding" Value="0,0,2,0" />
<Setter Property="Margin" Value="2,2,2,0" />
<!-- Background is there just because Windows 11 22H2 with option to show accent color in title bar will completely drown tabs in color and it wouln't be visible which one is selected -->
<Setter Property="Background">
<Setter.Value>
<!--<SolidColorBrush Color="{m:DynamicColor SystemAccentColor}" />-->
<LinearGradientBrush MappingMode="Absolute" StartPoint="0,0" EndPoint="0,20">
<GradientStop Offset=".1" Color="#00000000" />
<GradientStop Offset=".15" Color="#403E3C41" />
<GradientStop Offset="1" Color="#00000000" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
<!-- best if the same as FilesPanelBorder so parent folder blend into child panel -->
</Style>
<Style x:Key="TabsBottomBarBorder" TargetType="{x:Type Border}">
<!--<Setter Property="BorderBrush" Value="#2b292e" />
<Setter Property="BorderThickness" Value="0,1,0,0" />
<Setter Property="Height" Value="1" />-->
<Setter Property="Margin" Value="0,0,0,0" />
</Style>
<!-- Message panel -->
<Style x:Key="MessagePanelBorder" TargetType="{x:Type Border}">
<Setter Property="Background" Value="#1b1a1d" />
<!-- made the same as inactive tab color so it doesn't merge with files pane -->
<!--<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderThickness" Value="0,1,0,1" />-->
</Style>
<SolidColorBrush x:Key="MessageSuccessBackgroundBrush" Color="DarkGreen" />
<SolidColorBrush x:Key="MessageErrorBackgroundBrush" Color="DarkRed" />
<SolidColorBrush x:Key="MessageInfoBackgroundBrush" Color="Transparent" />
<!-- Other -->
<SolidColorBrush x:Key="ScrollBarTrackBrush" Color="#20888888" />
<SolidColorBrush x:Key="ScrollBarThumbBrush" Color="#ae888888" />
<SolidColorBrush x:Key="ScrollBarThumbHoverBrush" Color="#c0888888" />
<SolidColorBrush x:Key="ScrollBarThumbPressedBrush" Color="#c0949494" />
<!-- For background overlay when popup is open -->
<SolidColorBrush
x:Key="OverlayBrush"
Opacity=".08"
Color="{m:DynamicColor SystemAccentColor}" />
<!-- Flash item or right-click -->
<SolidColorBrush x:Key="FlashBrush" Color="#afd9fa" />
<SolidColorBrush
x:Key="OverlayInactiveBrowserBrush"
Opacity=".25"
Color="#000000" />
<!-- For panel overlay whey dual-panel is being collapsed -->
<SolidColorBrush
x:Key="OverlayCollapsingBrowserBrush"
Opacity=".84"
Color="#2b292e" />
<SolidColorBrush x:Key="ResizerBrush" Color="#2B292E" />
<SolidColorBrush x:Key="ResizerHoverBrush" Color="#353339" />
<Style x:Key="ResizerBorderBase" TargetType="{x:Type Border}">
<Setter Property="BorderBrush" Value="{DynamicResource ResizerBrush}" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="MinWidth" Value="6" />
<Setter Property="MinHeight" Value="6" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="BorderBrush" Value="{DynamicResource ResizerHoverBrush}" />
</Trigger>
</Style.Triggers>
</Style>
<Style
x:Key="BrowserDividerVerticalBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<!--<Setter Property="BorderBrush" Value="#04AAAC" />-->
<Setter Property="BorderThickness" Value="1,0,1,0" />
<Setter Property="BorderBrush" Value="{DynamicResource FadingVerticalGradient}" />
<Setter Property="Margin" Value="0,28,0,0" />
<!-- 28 from TabsContainer height -->
</Style>
<Style
x:Key="BrowserDividerHorizontalBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<Setter Property="BorderBrush" Value="{DynamicResource FadingHorizontalGradient}" />
<Setter Property="BorderThickness" Value="0,1,0,0" />
</Style>
<Style
x:Key="SidebarResizerBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<!--<Setter Property="BorderBrush" Value="#04AAAC" />-->
<Setter Property="CornerRadius" Value="0,0,0,0" />
<Setter Property="BorderThickness" Value="0,0,1,0" />
<Setter Property="BorderBrush" Value="{DynamicResource FadingVerticalGradient}" />
<Setter Property="Margin" Value="0,28,0,0" />
<!-- 28 was taken from TabsContainerBorder Height so it doen't go to the top of the window -->
</Style>
<Style
x:Key="NavigationPanelResizerBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<!--<Setter Property="BorderBrush" Value="#04AAAC" />-->
<Setter Property="BorderThickness" Value="0,1,0,0" />
<Setter Property="BorderBrush" Value="{DynamicResource FadingHorizontalGradient}" />
</Style>
<Style
x:Key="PreviewResizerHorizontalBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<Setter Property="BorderThickness" Value="0,1,0,0" />
<Setter Property="BorderBrush" Value="{DynamicResource FadingHorizontalGradient}" />
<Setter Property="Margin" Value="0,0,0,0" />
</Style>
<Style
x:Key="PreviewResizerVerticalBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<Setter Property="BorderThickness" Value="1,0,0,0" />
<Setter Property="BorderBrush" Value="{DynamicResource FadingVerticalGradient}" />
<Setter Property="Margin" Value="0,2,0,0" />
</Style>
<Style
x:Key="FileDetailsResizerHorizontalBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<!--<Setter Property="BorderBrush" Value="Transparent" />-->
<Setter Property="BorderThickness" Value="0,1,0,0" />
<Setter Property="BorderBrush" Value="{DynamicResource FadingHorizontalGradient}" />
<Setter Property="Height" Value="8" />
</Style>
<Style
x:Key="FileDetailsResizerVerticalBorder"
BasedOn="{StaticResource ResizerBorderBase}"
TargetType="{x:Type Border}">
<Setter Property="BorderThickness" Value="1,0,0,0" />
<Setter Property="BorderBrush" Value="{DynamicResource FadingVerticalGradient}" />
<Setter Property="Width" Value="8" />
</Style>
<s:Boolean x:Key="UseCustomUIElements">True</s:Boolean>
<CornerRadius x:Key="UICornerRadius">3</CornerRadius>
<!-- for some buttons for now -->
<SolidColorBrush x:Key="TooltipBackgroundBrush" Color="#575558" />
<!-- Line indicating Files Panel has been scrolled; may be renamed/removed in the future -->
<SolidColorBrush x:Key="BrushDimGraphics" Color="#222222" />
<!-- For Sort-Arrows for now -->
<SolidColorBrush x:Key="ToggleOnBrush" Color="#ffffff" />
<SolidColorBrush x:Key="ToggleOffBrush" Color="#777777" />
<SolidColorBrush x:Key="CaretBrush" Color="#000000" />
<!-- not used yet -->
<!--<SolidColorBrush x:Key="ButtonForegroundBrush" Color="#000000" />
<SolidColorBrush x:Key="ButtonForegroundPointerOver" Color="#0083b4" />
<SolidColorBrush x:Key="ButtonForegroundDisabled" Color="#777777" />-->
<!--<Setter Property="OverridesDefaultStyle" Value="True" />-->
<!-- can be also BasedOn="{StaticResource {x:Type Button}}" or BasedOn="{StaticResource ButtonRevealStyle}" -->
<!--<Style TargetType="{x:Type Button}" BasedOn="{StaticResource ModernButton}">
-->
<!-- BasedOn="{StaticResource ButtonRevealStyle}" -->
<!--
<Setter Property="Padding" Value="{DynamicResource ButtonPadding}" />
<Setter Property="Height" Value="{DynamicResource ButtonMinSize}" />
<Setter Property="MinWidth" Value="{DynamicResource ButtonMinSize}" />
</Style>-->
<SolidColorBrush x:Key="ButtonBackgroundBrush" Color="#9028262B" />
<SolidColorBrush x:Key="IconButtonBackgroundBrush" Color="#14000000" />
<SolidColorBrush x:Key="ButtonBackgroundPointerOverBrush" Color="{m:DynamicColor SystemAccentColor}" />
<SolidColorBrush x:Key="ButtonBackgroundPressedBrush" Color="#7c7c7c" />
<SolidColorBrush x:Key="ButtonBackgroundDisabledBrush" Color="#333333" />
<SolidColorBrush x:Key="ButtonForegroundBrush" Color="#ffffff" />
<SolidColorBrush x:Key="ButtonForegroundPointerOverBrush" Color="#ffffff" />
<SolidColorBrush x:Key="ButtonForegroundPressedBrush" Color="#ffffff" />
<SolidColorBrush x:Key="ButtonForegroundDisabledBrush" Color="#777777" />
<SolidColorBrush x:Key="ButtonBorderBrush" Color="Transparent" />
<SolidColorBrush x:Key="ButtonBorderPointerOverBrush" Color="Transparent" />
<SolidColorBrush x:Key="ButtonBorderPressedBrush" Color="Transparent" />
<SolidColorBrush x:Key="ButtonBorderDisabledBrush" Color="Transparent" />
<Thickness x:Key="ButtonBorderThickness">0</Thickness>
<Thickness x:Key="ButtonPadding">4,0,4,0</Thickness>
<s:Double x:Key="ButtonMinSize">24</s:Double>
<Style x:Key="ScrollIndicatorLine" TargetType="{x:Type Line}">
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="SnapsToDevicePixels" Value="True" />
<Setter Property="Stretch" Value="Fill" />
<Setter Property="StrokeThickness" Value="8" />
<Setter Property="X2" Value="1" />
<Setter Property="OpacityMask">
<Setter.Value>
<LinearGradientBrush MappingMode="RelativeToBoundingBox" StartPoint="0,0" EndPoint="1,0">
<GradientStop Offset="0" Color="#00000000" />
<GradientStop Offset="0.2" Color="#ffffffff" />
<GradientStop Offset="0.8" Color="#ffffffff" />
<GradientStop Offset="1" Color="#00000000" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Style>
<LinearGradientBrush x:Key="ScrollIndicatorTopBrush" StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#44000000" />
<GradientStop Offset="1" Color="#00000000" />
</LinearGradientBrush>
<LinearGradientBrush x:Key="ScrollIndicatorBottomBrush" StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="1" Color="#44000000" />
<GradientStop Offset="0" Color="#00000000" />
</LinearGradientBrush>
<SolidColorBrush x:Key="TagRedBrush" Color="#ef7063" />
<SolidColorBrush x:Key="TagOrangeBrush" Color="#eda95d" />
<SolidColorBrush x:Key="TagYellowBrush" Color="#efcf68" />
<SolidColorBrush x:Key="TagGreenBrush" Color="#88c866" />
<SolidColorBrush x:Key="TagBlueBrush" Color="#6fb8ef" />
<SolidColorBrush x:Key="TagPurpleBrush" Color="#c78edd" />
<SolidColorBrush x:Key="TagGrayBrush" Color="#7c7c7f" />
</ResourceDictionary>