28 lines
787 B
C#
28 lines
787 B
C#
|
|
namespace OpenTheBox.Core.Enums;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Unlockable font styles for the CLI interface.
|
||
|
|
/// Found in Boite Meta. The default console font is always available;
|
||
|
|
/// additional fonts are unlocked as drops.
|
||
|
|
/// </summary>
|
||
|
|
public enum FontStyle
|
||
|
|
{
|
||
|
|
/// <summary>The default system console font. Always available.</summary>
|
||
|
|
Default,
|
||
|
|
|
||
|
|
/// <summary>Consolas monospaced font. Clean and technical.</summary>
|
||
|
|
Consolas,
|
||
|
|
|
||
|
|
/// <summary>Firetruc display font. Bold and playful.</summary>
|
||
|
|
Firetruc,
|
||
|
|
|
||
|
|
/// <summary>JetBrains Mono font. Developer-focused with ligatures.</summary>
|
||
|
|
Jetbrains,
|
||
|
|
|
||
|
|
/// <summary>Vercel One font. Modern and sleek.</summary>
|
||
|
|
VercelOne,
|
||
|
|
|
||
|
|
/// <summary>Toto Posted One font. Artistic and distinctive.</summary>
|
||
|
|
TotoPostedOne
|
||
|
|
}
|