From 1720c7060dea4fc3f6e107dfdd5983290e92269f Mon Sep 17 00:00:00 2001 From: svlandeg Date: Fri, 3 Oct 2025 10:16:58 +0200 Subject: [PATCH 1/3] remove quotes --- docs/tutorial/printing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/printing.md b/docs/tutorial/printing.md index 1a5bd4e176..a563e15e36 100644 --- a/docs/tutorial/printing.md +++ b/docs/tutorial/printing.md @@ -232,7 +232,7 @@ You can create colored strings to output to the terminal with `typer.style()`, t /// tip -The parameters `fg` and `bg` receive strings with the color names for the "**f**ore**g**round" and "**b**ack**g**round" colors. You could simply pass `fg="green"` and `bg="red"`. +The parameters `fg` and `bg` receive strings with the color names for the **f**ore**g**round and **b**ack**g**round colors. You could simply pass `fg="green"` and `bg="red"`. But **Typer** provides them all as variables like `typer.colors.GREEN` just so you can use autocompletion while selecting them. From c0d1337a5d3a31728342079b2f2a3d005961ee8c Mon Sep 17 00:00:00 2001 From: svlandeg Date: Fri, 3 Oct 2025 10:39:18 +0200 Subject: [PATCH 2/3] try with strong instead of asterisks --- docs/tutorial/printing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/printing.md b/docs/tutorial/printing.md index a563e15e36..7826d72b4a 100644 --- a/docs/tutorial/printing.md +++ b/docs/tutorial/printing.md @@ -232,7 +232,7 @@ You can create colored strings to output to the terminal with `typer.style()`, t /// tip -The parameters `fg` and `bg` receive strings with the color names for the **f**ore**g**round and **b**ack**g**round colors. You could simply pass `fg="green"` and `bg="red"`. +The parameters `fg` and `bg` receive strings with the color names for the foreground" and background colors. You could simply pass `fg="green"` and `bg="red"`. But **Typer** provides them all as variables like `typer.colors.GREEN` just so you can use autocompletion while selecting them. From 152498ad83a9f22f500725c3afa786a9cc17cc5d Mon Sep 17 00:00:00 2001 From: svlandeg Date: Fri, 3 Oct 2025 10:59:24 +0200 Subject: [PATCH 3/3] try again with quotes --- docs/tutorial/printing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/printing.md b/docs/tutorial/printing.md index 7826d72b4a..b234a2e6d9 100644 --- a/docs/tutorial/printing.md +++ b/docs/tutorial/printing.md @@ -232,7 +232,7 @@ You can create colored strings to output to the terminal with `typer.style()`, t /// tip -The parameters `fg` and `bg` receive strings with the color names for the foreground" and background colors. You could simply pass `fg="green"` and `bg="red"`. +The parameters `fg` and `bg` receive strings with the color names for the "foreground" and "background" colors. You could simply pass `fg="green"` and `bg="red"`. But **Typer** provides them all as variables like `typer.colors.GREEN` just so you can use autocompletion while selecting them.