mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
21 lines
399 B
C#
21 lines
399 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
public enum Vibrancy
|
|
{
|
|
[JsonProperty("appearance-based")]
|
|
appearanceBased,
|
|
light,
|
|
dark,
|
|
titlebar,
|
|
selection,
|
|
menu,
|
|
popover,
|
|
sidebar,
|
|
[JsonProperty("medium-light")]
|
|
mediumLight,
|
|
[JsonProperty("ultra-dark")]
|
|
ultraDark
|
|
}
|
|
} |