mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-15 02:00:09 +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 {
|
||||
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 {
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
}
|
||||
|
||||
.custom-block.tip .command-example {
|
||||
background-color: darken($exampleBgColor, 3%);
|
||||
background-color: $exampleBgColorInTip;
|
||||
}
|
||||
|
||||
.bot-prefix {
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
}
|
||||
|
||||
.custom-block.tip .command-example-group {
|
||||
background-color: darken($exampleBgColor, 3%);
|
||||
background-color: $exampleBgColorInTip;
|
||||
}
|
||||
|
||||
.command-example-group .command-example {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
}
|
||||
|
||||
.custom-block.tip .example-inline {
|
||||
background-color: darken($exampleArgColor, 3%);
|
||||
background-color: $exampleArgColorInTip;
|
||||
}
|
||||
|
||||
.inline-bot-prefix {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue