Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/PluginAppearanceSnapshot.cs

19 lines
653 B
C#
Raw Normal View History

2026-03-20 22:37:37 +08:00
namespace LanMountainDesktop.PluginSdk;
public sealed record PluginMaterialSurfaceSnapshot(
string BackgroundColor,
string BorderColor,
double BlurRadius,
double Opacity);
2026-03-20 22:37:37 +08:00
public sealed record PluginAppearanceSnapshot(
PluginCornerRadiusTokens CornerRadiusTokens,
string ThemeVariant,
string? AccentColor = null,
string? SeedColor = null,
string? ColorSource = null,
string? SystemMaterialMode = null,
IReadOnlyDictionary<string, string>? ColorRoles = null,
IReadOnlyDictionary<string, PluginMaterialSurfaceSnapshot>? MaterialSurfaces = null,
IReadOnlyList<string>? WallpaperSeedCandidates = null);