Small stylistic changes

This commit is contained in:
Ske 2020-06-11 15:57:45 +02:00
parent 556fe28aa7
commit 701a0e5054
6 changed files with 14 additions and 11 deletions

View file

@ -33,15 +33,15 @@
} }
.custom-block.tip .command-argument { .custom-block.tip .command-argument {
background-color: darken($exampleArgColor, 3%); background-color: $exampleArgColorInTip;
} }
.command-example .command-argument { .command-example .command-argument {
background-color: darken($exampleArgColor, 8%); background-color: $exampleArgColorInExample;
} }
.custom-block.tip .command-example .command-argument { .custom-block.tip .command-example .command-argument {
background-color: darken($exampleArgColor, 10%); background-color: $exampleArgColorInBoth;
} }
.argument-details { .argument-details {

View file

@ -21,7 +21,7 @@
} }
.custom-block.tip .command-example { .custom-block.tip .command-example {
background-color: darken($exampleBgColor, 3%); background-color: $exampleBgColorInTip;
} }
.bot-prefix { .bot-prefix {

View file

@ -16,7 +16,7 @@
} }
.custom-block.tip .command-example-group { .custom-block.tip .command-example-group {
background-color: darken($exampleBgColor, 3%); background-color: $exampleBgColorInTip;
} }
.command-example-group .command-example { .command-example-group .command-example {

View file

@ -14,7 +14,7 @@
} }
.custom-block.tip .example-inline { .custom-block.tip .example-inline {
background-color: darken($exampleArgColor, 3%); background-color: $exampleArgColorInTip;
} }
.inline-bot-prefix { .inline-bot-prefix {

View file

@ -6,9 +6,12 @@ $accentColor = darken(#e8a024, 10%);
/*$exampleBgColor = $codeBgColor; /*$exampleBgColor = $codeBgColor;
$exampleTextColor = #ffffff;*/ $exampleTextColor = #ffffff;*/
$exampleBgColor = #f3f5f7; $exampleBgColor = #f3f5f7;
$exampleBgColorInContainer = darken($exampleBgColor, 3%); $exampleBgColorInTip = darken($exampleBgColor, 4%);
$exampleTextColor = darken($textColor, 5%); $exampleTextColor = darken($textColor, 5%);
$exampleArgColor = $exampleBgColor; $exampleArgColor = darken($exampleBgColor, 4%);
$exampleArgColorInExample = darken($exampleBgColor, 8%);
$exampleArgColorInTip = darken($exampleBgColor, 7%);
$exampleArgColorInBoth = darken($exampleBgColor, 12%);
$tipDarkenFactor = 3; $tipDarkenFactor = 3;
$exampleDarkenFactor = 5; $exampleDarkenFactor = 5;
//$examplePrefixColor = #b3b6b9; //$examplePrefixColor = #b3b6b9;

View file

@ -18,7 +18,7 @@ When an argument asks for a **member ID**, you can either fill in a member's [5-
## System commands ## System commands
::: tip ::: tip
You can use <CmdInline>s</CmdInline> instead of <CmdInline>system</CmdInline> on all of the below commands. You can use <CmdInline>s</CmdInline> instead of <CmdInline>system</CmdInline> as a short-hand.
::: :::
<CommandInfo cmd="system-info"></CommandInfo> <CommandInfo cmd="system-info"></CommandInfo>
@ -26,10 +26,10 @@ You can use <CmdInline>s</CmdInline> instead of <CmdInline>system</CmdInline> on
## Member commands ## Member commands
::: tip ::: tip
You can use <CmdInline>m</CmdInline> instead of <CmdInline>member</CmdInline> on all of the below commands. You can use <CmdInline>m</CmdInline> instead of <CmdInline>member</CmdInline> as a short-hand.
::: :::
## Switch commands ## Switch commands
::: tip ::: tip
You can use <CmdInline>sw</CmdInline> instead of <CmdInline>switch</CmdInline> on all of the below commands. You can use <CmdInline>sw</CmdInline> instead of <CmdInline>switch</CmdInline> as a short-hand.
::: :::