mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Small stylistic changes
This commit is contained in:
parent
556fe28aa7
commit
701a0e5054
6 changed files with 14 additions and 11 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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.
|
||||||
:::
|
:::
|
||||||
Loading…
Add table
Add a link
Reference in a new issue