Hackish library use colors with writeln(...); on POSIX.
// all below retun ANSI color codes, which most terminals will interpret correctly
C.red.fg; // Color → Red → Foreground
C.blueDark.bg; // Color → Blue (Dark) → Background
C.reset.fg; // Color → Default Color → Foreground
C.reset.bg; // Color → Default Color → Background
resetColor; // Reset foreground and background colors to defaultimport std.stdio : writeln;
writeln(C.green.fg, "Green text", resetColor);
writeln(C.blue.bg, "Blue", C.blueDark.bg, "Dark", resetColor);
writeln("Written in ", C.yellow.fg, "yellow color and ", C.blackDark.bg, "dark background", resetColor, "!");/// dub.json
"dependencies": {
"termcolor-d": "~>0.0.1",
...
}/// dub.sdl
dependency "termcolor-d" version="~>0.0.1"scone 🍞 by me - If you need a more fleshed out cross-platform library to handle text, colors, and keyboard input.
terminal.d by Adam D. Ruppe - A more lightweight cross-platform library to handle text, colors, and keyboard input.
textattr by Shriramana Sharma - Library with a different approach than this project, but with some more functionality. Available for other programming languages languages.
ConsoleD by Robert Pasińsk - Another cross-platform library with yet another approach than this project, and also has more functionality.
