mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 19:29:07 +00:00
13 lines
368 B
C#
13 lines
368 B
C#
namespace AIStudio.Settings.DataModel;
|
|
|
|
public static class ThemesExtensions
|
|
{
|
|
public static string GetName(this Themes theme) => theme switch
|
|
{
|
|
Themes.SYSTEM => "Synchronized with the operating system settings",
|
|
Themes.LIGHT => "Always use light theme",
|
|
Themes.DARK => "Always use dark theme",
|
|
|
|
_ => "Unknown setting",
|
|
};
|
|
} |