diff options
author | dsrkafuu | 2021-06-09 10:31:54 +0800 |
---|---|---|
committer | dsrkafuu | 2021-06-09 10:31:54 +0800 |
commit | 787b7865fba31fd56009a85f214f829b9d85cc04 (patch) | |
tree | 231c5deebcb813723046e6ac1f1b48d6ed055409 /assets/scss/_primer/base/kbd.scss | |
parent | a138423ec2588d76a96f90fdcd8d9606276355e3 (diff) | |
download | hugo-theme-fuji-787b7865fba31fd56009a85f214f829b9d85cc04.tar.gz hugo-theme-fuji-787b7865fba31fd56009a85f214f829b9d85cc04.tar.bz2 hugo-theme-fuji-787b7865fba31fd56009a85f214f829b9d85cc04.zip |
build: update primer
Diffstat (limited to 'assets/scss/_primer/base/kbd.scss')
-rw-r--r-- | assets/scss/_primer/base/kbd.scss | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/assets/scss/_primer/base/kbd.scss b/assets/scss/_primer/base/kbd.scss index 7ee4503..033c03a 100644 --- a/assets/scss/_primer/base/kbd.scss +++ b/assets/scss/_primer/base/kbd.scss @@ -8,14 +8,13 @@ kbd { font: 11px $mono-font; // stylelint-disable-next-line primer/typography line-height: 10px; - // stylelint-disable-next-line primer/colors - color: $gray-700; + color: var(--color-text-primary); vertical-align: middle; - background-color: $bg-gray-light; + background-color: var(--color-bg-secondary); // stylelint-disable-next-line primer/borders - border: $border-style $border-width $border-gray-dark; - border-bottom-color: $border-gray-dark; + border: $border-style $border-width var(--color-border-tertiary); + border-bottom-color: var(--color-border-tertiary); border-radius: $border-radius; // stylelint-disable-next-line primer/box-shadow - box-shadow: inset 0 -1px 0 $border-gray-dark; + box-shadow: inset 0 -1px 0 var(--color-border-tertiary); } |