New doc theme (#387)

This commit is contained in:
Phil Scott
2021-04-24 16:20:59 -04:00
committed by GitHub
parent b568098d5e
commit 2a9fbb1ee9
145 changed files with 197984 additions and 8746 deletions

View File

@ -5,7 +5,7 @@ RedirectFrom: figlet
Spectre.Console can render [FIGlet](http://www.figlet.org/) text by using the `FigletText` class.
# Default font
## Default font
```csharp
AnsiConsole.Render(
@ -22,7 +22,7 @@ AnsiConsole.Render(
|_| |_| \___| |_| |_| \___/
```
# Custom font
## Custom font
```csharp
var font = FigletFont.Load("starwars.flf");
@ -31,4 +31,4 @@ AnsiConsole.Render(
new FigletText(font, "Hello")
.LeftAligned()
.Color(Color.Red));
```
```