Browse Source

Merge pull request #252 from ionite34/update-theme

pull/143/head
Ionite 1 year ago committed by GitHub
parent
commit
ff0dab095e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 6
      StabilityMatrix.Avalonia/Views/MainWindow.axaml.cs

2
CHANGELOG.md

@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
## v2.4.6
### Added
- LDSR / ADetailer shared folder links for Automatic1111 Package
### Changed
- Made Dark Mode background slightly lighter
## v2.4.5
### Fixed

6
StabilityMatrix.Avalonia/Views/MainWindow.axaml.cs

@ -265,11 +265,11 @@ public partial class MainWindow : AppWindowBase
out var value
)
? (Color2)(Color)value!
: new Color2(32, 32, 32);
: new Color2(30, 31, 34);
color = color.LightenPercent(-0.8f);
color = color.LightenPercent(-0.5f);
Background = new ImmutableSolidColorBrush(color, 0.8);
Background = new ImmutableSolidColorBrush(color, 0.72);
}
else if (ActualThemeVariant == ThemeVariant.Light)
{

Loading…
Cancel
Save