Advertisement
Guest User

OnsetGlazeEdited

a guest
Jun 18th, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.02 KB | None | 0 0
  1. <!--
  2. Name: OnsetGlazeEdited
  3. IsDark: True
  4. HasBlur: True
  5. -->
  6. <ResourceDictionary
  7. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  8. xmlns:system="clr-namespace:System;assembly=mscorlib"
  9. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  10. <ResourceDictionary.MergedDictionaries>
  11. <ResourceDictionary Source="pack://application:,,,/Themes/Base.xaml" />
  12. </ResourceDictionary.MergedDictionaries>
  13. <system:Boolean x:Key="ThemeBlurEnabled">True</system:Boolean>
  14. <system:String x:Key="SystemBG">Dark</system:String>
  15. <Color x:Key="LightBG">#CEFAFAFA</Color>
  16. <Color x:Key="DarkBG">#05000000</Color>
  17. <Style
  18. BasedOn="{StaticResource BaseGlyphStyle}"
  19. TargetType="{x:Type TextBlock}"
  20. x:Key="ItemGlyph">
  21. <Setter Property="Foreground" Value="#ffffff" />
  22. </Style>
  23. <Style
  24. BasedOn="{StaticResource BaseQueryBoxStyle}"
  25. TargetType="{x:Type TextBox}"
  26. x:Key="QueryBoxStyle">
  27. <Setter Property="Padding" Value="0,4,50,0" />
  28. <Setter Property="Foreground" Value="#FFFFFFFF" />
  29. <Setter Property="Background" Value="Transparent" />
  30. <Setter Property="FontSize" Value="18" />
  31. <Setter Property="Height" Value="38" />
  32. </Style>
  33. <Style
  34. BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}"
  35. TargetType="{x:Type TextBox}"
  36. x:Key="QuerySuggestionBoxStyle">
  37. <Setter Property="Padding" Value="0,4,50,0" />
  38. <Setter Property="Background" Value="Transparent" />
  39. <Setter Property="Height" Value="38" />
  40. <Setter Property="FontSize" Value="18" />
  41. <Setter Property="Foreground" Value="LightGray" />
  42. </Style>
  43. <Style
  44. BasedOn="{StaticResource BaseWindowBorderStyle}"
  45. TargetType="{x:Type Border}"
  46. x:Key="WindowBorderStyle">
  47. <Setter Property="BorderThickness" Value="1" />
  48. <Setter Property="BorderBrush" Value="#444444" />
  49. <Setter Property="Background">
  50. <Setter.Value>
  51. <SolidColorBrush Color="Black" Opacity="0.3" />
  52. </Setter.Value>
  53. </Setter>
  54. <Setter Property="CornerRadius" Value="8" />
  55. <Setter Property="UseLayoutRounding" Value="True" />
  56. </Style>
  57. <Style
  58. BasedOn="{StaticResource BaseWindowStyle}"
  59. TargetType="{x:Type Window}"
  60. x:Key="WindowStyle">
  61. <Setter Property="Background">
  62. <Setter.Value>
  63. <SolidColorBrush Color="Black" Opacity="0.2" />
  64. </Setter.Value>
  65. </Setter>
  66. </Style>
  67. <Style
  68. BasedOn="{StaticResource BasePendingLineStyle}"
  69. TargetType="{x:Type Line}"
  70. x:Key="PendingLineStyle" />
  71. <Style
  72. BasedOn="{StaticResource BaseItemTitleStyle}"
  73. TargetType="{x:Type TextBlock}"
  74. x:Key="ItemTitleStyle">
  75. <Setter Property="Foreground" Value="#bebec1" />
  76. </Style>
  77. <Style
  78. BasedOn="{StaticResource BaseItemSubTitleStyle}"
  79. TargetType="{x:Type TextBlock}"
  80. x:Key="ItemSubTitleStyle">
  81. <Setter Property="Foreground" Value="#bebec1" />
  82. </Style>
  83. <Style
  84. BasedOn="{StaticResource BaseSeparatorStyle}"
  85. TargetType="{x:Type Rectangle}"
  86. x:Key="SeparatorStyle">
  87. <Setter Property="Fill" Value="#bebec1" />
  88. <Setter Property="Height" Value="1" />
  89. <Setter Property="Margin" Value="0,0,0,8" />
  90. </Style>
  91. <Style x:Key="HighlightStyle" />
  92. <Style
  93. BasedOn="{StaticResource BaseItemTitleSelectedStyle}"
  94. TargetType="{x:Type TextBlock}"
  95. x:Key="ItemTitleSelectedStyle">
  96. <Setter Property="Foreground" Value="#ffffff" />
  97. </Style>
  98. <Style
  99. BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}"
  100. TargetType="{x:Type TextBlock}"
  101. x:Key="ItemSubTitleSelectedStyle">
  102. <Setter Property="Foreground" Value="#bebec1" />
  103. </Style>
  104. <SolidColorBrush x:Key="ItemSelectedBackgroundColor">#19c9c9fb</SolidColorBrush>
  105. <Style
  106. BasedOn="{StaticResource BaseThumbStyle}"
  107. TargetType="{x:Type Thumb}"
  108. x:Key="ThumbStyle">
  109. <Setter Property="Template">
  110. <Setter.Value>
  111. <ControlTemplate TargetType="{x:Type Thumb}">
  112. <Border
  113. Background="#ffffff"
  114. BorderBrush="Transparent"
  115. BorderThickness="0"
  116. CornerRadius="2"
  117. DockPanel.Dock="Right"
  118. Opacity="0.2" />
  119. </ControlTemplate>
  120. </Setter.Value>
  121. </Setter>
  122. </Style>
  123. <Style
  124. BasedOn="{StaticResource BaseScrollBarStyle}"
  125. TargetType="{x:Type ScrollBar}"
  126. x:Key="ScrollBarStyle">
  127. <Setter Property="Background" Value="#a0a0a0" />
  128. </Style>
  129. <Style
  130. BasedOn="{StaticResource BaseSearchIconStyle}"
  131. TargetType="{x:Type Path}"
  132. x:Key="SearchIconStyle">
  133. <Setter Property="Fill" Value="#bebec1" />
  134. <Setter Property="Width" Value="24" />
  135. <Setter Property="Height" Value="24" />
  136. </Style>
  137. <Style TargetType="{x:Type Canvas}" x:Key="SearchIconPosition">
  138. <Setter Property="Background" Value="Transparent" />
  139. <Setter Property="Width" Value="32" />
  140. <Setter Property="Height" Value="32" />
  141. <Setter Property="Margin" Value="0,8,8,0" />
  142. <Setter Property="HorizontalAlignment" Value="Right" />
  143. </Style>
  144. <Style TargetType="{x:Type TextBlock}" x:Key="ItemHotkeyStyle">
  145. <Setter Property="FontSize" Value="12" />
  146. <Setter Property="Foreground" Value="#bebec1" />
  147. </Style>
  148. <Style TargetType="{x:Type TextBlock}" x:Key="ItemHotkeySelectedStyle">
  149. <Setter Property="FontSize" Value="12" />
  150. <Setter Property="Foreground" Value="#bebec1" />
  151. </Style>
  152. <Style TargetType="{x:Type TextBlock}" x:Key="ItemGlyphSelectedStyle">
  153. <Setter Property="Foreground" Value="#ffffff" />
  154. <Setter Property="VerticalAlignment" Value="Center" />
  155. <Setter Property="HorizontalAlignment" Value="Center" />
  156. <Setter Property="Width" Value="25" />
  157. <Setter Property="Height" Value="25" />
  158. <Setter Property="FontSize" Value="25" />
  159. </Style>
  160. <CornerRadius x:Key="ItemRadius">8</CornerRadius>
  161. <Thickness x:Key="ItemMargin">10 0 10 0</Thickness>
  162. <Thickness x:Key="ResultMargin">0 0 0 10</Thickness>
  163. <Style
  164. BasedOn="{StaticResource ClockPanel}"
  165. TargetType="{x:Type StackPanel}"
  166. x:Key="ClockPanel">
  167. <Setter Property="Margin" Value="0,0,54,0" />
  168. </Style>
  169. <Style
  170. BasedOn="{StaticResource BaseClockBox}"
  171. TargetType="{x:Type TextBlock}"
  172. x:Key="ClockBox">
  173. <Setter Property="Foreground" Value="#bebec1" />
  174. </Style>
  175. <Style
  176. BasedOn="{StaticResource BaseDateBox}"
  177. TargetType="{x:Type TextBlock}"
  178. x:Key="DateBox">
  179. <Setter Property="Foreground" Value="#bebec1" />
  180. </Style>
  181. <Style
  182. BasedOn="{StaticResource BasePreviewBorderStyle}"
  183. TargetType="{x:Type Border}"
  184. x:Key="PreviewBorderStyle">
  185. <Setter Property="Margin" Value="0,0,10,8" />
  186. <Setter Property="BorderBrush" Value="#bebec1" />
  187. </Style>
  188. <Style
  189. BasedOn="{StaticResource BasePreviewItemTitleStyle}"
  190. TargetType="{x:Type TextBlock}"
  191. x:Key="PreviewItemTitleStyle">
  192. <Setter Property="Foreground" Value="#ffffff" />
  193. </Style>
  194. <Style
  195. BasedOn="{StaticResource BasePreviewItemSubTitleStyle}"
  196. TargetType="{x:Type TextBlock}"
  197. x:Key="PreviewItemSubTitleStyle">
  198. <Setter Property="Foreground" Value="#bebec1" />
  199. </Style>
  200. <Style
  201. BasedOn="{StaticResource BasePreviewGlyph}"
  202. TargetType="{x:Type TextBlock}"
  203. x:Key="PreviewGlyph">
  204. <Setter Property="Foreground" Value="#bebec1" />
  205. </Style>
  206. </ResourceDictionary>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement