From addb25761a61b48ae504bce9dd0a9ed4bd8ed237 Mon Sep 17 00:00:00 2001 From: KuzyaGlebkin <141416184+KuzyaGlebkin@users.noreply.github.com> Date: Wed, 26 Jun 2024 05:09:27 +0300 Subject: [PATCH] Add all imports to the first example in guide.md (#178) --- docs/guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/guide.md b/docs/guide.md index 55d0d091..53bf4bf0 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -16,6 +16,8 @@ combine a foreground and background. ```kotlin import com.github.ajalt.mordant.rendering.TextColors.* import com.github.ajalt.mordant.rendering.TextStyles.* + import com.github.ajalt.mordant.terminal.Terminal + import com.github.ajalt.mordant.rendering.TextColors.Companion.rgb val t = Terminal() t.println(brightRed("You can use any of the standard ANSI colors"))