More work on FAT32 formatter

This commit is contained in:
Pdawg11239
2025-03-16 18:40:38 -04:00
parent 87cf731f0b
commit 2a15f045bc
11 changed files with 524 additions and 62 deletions

View File

@@ -0,0 +1,9 @@
namespace BadBuilder.Formatter
{
static class Constants
{
internal const string ORANGE = "\u001b[38;2;255;114;0m";
internal const string ANSI_RESET = "\u001b[0m";
}
}