BlackWhiteTheme.axaml 1.4 KB

123456789101112131415161718192021222324252627
  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:controls="https://github.com/kikipoulet/SukiUI"
  4. xmlns:system="clr-namespace:System;assembly=netstandard">
  5. <ResourceDictionary.ThemeDictionaries>
  6. <ResourceDictionary x:Key='Light'>
  7. <Color x:Key='SukiPrimaryColor'>Black</Color>
  8. <system:Double x:Key="GlassOpacity">0.5</system:Double>
  9. <Color x:Key="GlassBorderBrush">#cccccc</Color>
  10. <Color x:Key="SukiCardBackground">#ffffff</Color>
  11. </ResourceDictionary>
  12. <ResourceDictionary x:Key='Dark'>
  13. <Color x:Key='SukiPrimaryColor'>White</Color>
  14. <system:Double x:Key="GlassOpacity">0.09</system:Double>
  15. <BoxShadows x:Key="SukiSwitchShadow">0 0 0 0 Transparent</BoxShadows>
  16. <Color x:Key="SukiCardBackground">#2a2a2a</Color>
  17. <Color x:Key="GlassBorderBrush">White</Color>
  18. <LinearGradientBrush x:Key="PopupGradientBrush" StartPoint="0%,0%" EndPoint="100%,100%">
  19. <GradientStop Color="{DynamicResource Transparent}" Offset="0"></GradientStop>
  20. <GradientStop Color="{DynamicResource Transparent}" Offset="0.9"></GradientStop>
  21. </LinearGradientBrush>
  22. </ResourceDictionary>
  23. </ResourceDictionary.ThemeDictionaries>
  24. </ResourceDictionary>