mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-17 22:26:00 +00:00
26 lines
530 B
C#
26 lines
530 B
C#
using System.ComponentModel;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Defines the ThemeSourceMode enumeration.
|
|
/// </summary>
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
|
public enum ThemeSourceMode
|
|
{
|
|
/// <summary>
|
|
/// Operating system default.
|
|
/// </summary>
|
|
System,
|
|
|
|
/// <summary>
|
|
/// Light theme.
|
|
/// </summary>
|
|
Light,
|
|
|
|
/// <summary>
|
|
/// Dark theme.
|
|
/// </summary>
|
|
Dark
|
|
}
|
|
} |