diff --git a/docs/content/.vuepress/components/Arg.vue b/docs/content/.vuepress/components/Arg.vue
index 5a80ca60..80dd5e07 100644
--- a/docs/content/.vuepress/components/Arg.vue
+++ b/docs/content/.vuepress/components/Arg.vue
@@ -33,15 +33,15 @@
}
.custom-block.tip .command-argument {
- background-color: darken($exampleArgColor, 3%);
+ background-color: $exampleArgColorInTip;
}
.command-example .command-argument {
- background-color: darken($exampleArgColor, 8%);
+ background-color: $exampleArgColorInExample;
}
.custom-block.tip .command-example .command-argument {
- background-color: darken($exampleArgColor, 10%);
+ background-color: $exampleArgColorInBoth;
}
.argument-details {
diff --git a/docs/content/.vuepress/components/Cmd.vue b/docs/content/.vuepress/components/Cmd.vue
index 35a65d21..4cc00442 100644
--- a/docs/content/.vuepress/components/Cmd.vue
+++ b/docs/content/.vuepress/components/Cmd.vue
@@ -21,7 +21,7 @@
}
.custom-block.tip .command-example {
- background-color: darken($exampleBgColor, 3%);
+ background-color: $exampleBgColorInTip;
}
.bot-prefix {
diff --git a/docs/content/.vuepress/components/CmdGroup.vue b/docs/content/.vuepress/components/CmdGroup.vue
index 81dd7346..40cac305 100644
--- a/docs/content/.vuepress/components/CmdGroup.vue
+++ b/docs/content/.vuepress/components/CmdGroup.vue
@@ -16,7 +16,7 @@
}
.custom-block.tip .command-example-group {
- background-color: darken($exampleBgColor, 3%);
+ background-color: $exampleBgColorInTip;
}
.command-example-group .command-example {
diff --git a/docs/content/.vuepress/components/CmdInline.vue b/docs/content/.vuepress/components/CmdInline.vue
index f715a485..e1ad8444 100644
--- a/docs/content/.vuepress/components/CmdInline.vue
+++ b/docs/content/.vuepress/components/CmdInline.vue
@@ -14,7 +14,7 @@
}
.custom-block.tip .example-inline {
- background-color: darken($exampleArgColor, 3%);
+ background-color: $exampleArgColorInTip;
}
.inline-bot-prefix {
diff --git a/docs/content/.vuepress/styles/palette.styl b/docs/content/.vuepress/styles/palette.styl
index bcfc678b..1b2bfa4f 100644
--- a/docs/content/.vuepress/styles/palette.styl
+++ b/docs/content/.vuepress/styles/palette.styl
@@ -6,9 +6,12 @@ $accentColor = darken(#e8a024, 10%);
/*$exampleBgColor = $codeBgColor;
$exampleTextColor = #ffffff;*/
$exampleBgColor = #f3f5f7;
-$exampleBgColorInContainer = darken($exampleBgColor, 3%);
+$exampleBgColorInTip = darken($exampleBgColor, 4%);
$exampleTextColor = darken($textColor, 5%);
-$exampleArgColor = $exampleBgColor;
+$exampleArgColor = darken($exampleBgColor, 4%);
+$exampleArgColorInExample = darken($exampleBgColor, 8%);
+$exampleArgColorInTip = darken($exampleBgColor, 7%);
+$exampleArgColorInBoth = darken($exampleBgColor, 12%);
$tipDarkenFactor = 3;
$exampleDarkenFactor = 5;
//$examplePrefixColor = #b3b6b9;
diff --git a/docs/content/guide/commands.md b/docs/content/guide/commands.md
index 28072448..d93176ff 100644
--- a/docs/content/guide/commands.md
+++ b/docs/content/guide/commands.md
@@ -18,7 +18,7 @@ When an argument asks for a **member ID**, you can either fill in a member's [5-
## System commands
::: tip
-You can use s instead of system on all of the below commands.
+You can use s instead of system as a short-hand.
:::
@@ -26,10 +26,10 @@ You can use s instead of system on
## Member commands
::: tip
-You can use m instead of member on all of the below commands.
+You can use m instead of member as a short-hand.
:::
## Switch commands
::: tip
-You can use sw instead of switch on all of the below commands.
+You can use sw instead of switch as a short-hand.
:::
\ No newline at end of file