From f4080fbdaf62e15bc65eaad0d2f39e312de476a6 Mon Sep 17 00:00:00 2001 From: shadcn Date: Wed, 14 Aug 2024 21:42:59 +0400 Subject: [PATCH] chore(cli): update phrasing --- packages/cli/src/commands/init.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index ffb327cf68..15df0fe5b2 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -125,7 +125,7 @@ export async function promptForConfig( { type: "select", name: "tailwindBaseColor", - message: `Which color would you like to use as ${highlight( + message: `Which color would you like to use as the ${highlight( "base color" )}?`, choices: baseColors.map((color) => ({ @@ -144,7 +144,7 @@ export async function promptForConfig( name: "tailwindCssVariables", message: `Would you like to use ${highlight( "CSS variables" - )} for colors?`, + )} for theming?`, initial: defaultConfig?.tailwind.cssVariables ?? true, active: "yes", inactive: "no", @@ -258,7 +258,7 @@ export async function promptForMinimalConfig( { type: "select", name: "tailwindBaseColor", - message: `Which color would you like to use as ${highlight( + message: `Which color would you like to use as the ${highlight( "base color" )}?`, choices: baseColors.map((color) => ({ @@ -271,7 +271,7 @@ export async function promptForMinimalConfig( name: "tailwindCssVariables", message: `Would you like to use ${highlight( "CSS variables" - )} for colors?`, + )} for theming?`, initial: defaultConfig?.tailwind.cssVariables, active: "yes", inactive: "no",