MobileSuit provides an easy way to quickly build a .NET Console App.
Focus on writing the backend part, Import HitRefresh.MobileSuit, and simply write a Frontend in a very simple standard, then a beautiful Console App is born.
For Example: HIT-Schedule-Master CLI
with PowerLine theme & I18N support
Previously named as PlasticMetal.MobileSuit.
## Theme System
MobileSuit now supports several popular color themes, including Nord, Dracula, Solarized Light/Dark, and Monokai.
### Available Themes
| Theme | Description | Screenshot |
|-------|-------------|------------|
| **Nord** | Arctic, north-bluish color palette |  |
| **Dracula** | Popular dark theme |  |
| **Solarized Light** | Light Solarized theme |
| **Solarized Dark** | Dark Solarized theme |  |
| **Monokai** | Sublime Text style theme |
| **Default** | System default theme | |
### Usage
#### Set theme at startup
```csharp
var host = Suit.CreateBuilder(args)
.UseNordTheme() // Use Nord theme
.MapClient<Client>()
.Build();

