diff --git a/ui/src/Styles/DarkTheme.scss b/ui/src/Styles/DarkTheme.scss index 4cc9a9c20..3209855a1 100644 --- a/ui/src/Styles/DarkTheme.scss +++ b/ui/src/Styles/DarkTheme.scss @@ -73,6 +73,9 @@ $table-accent-bg: transparent; $card-cap-bg: inherit; +$kbd-color: $white; +$kbd-bg: $dark; + @import "./RebootlessBootstrap"; @import "bootswatch/dist/darkly/bootswatch"; @@ -112,3 +115,13 @@ $color-default: #708090; a { color: $link-color; } + +button.btn { + --bs-btn-active-border-color: transparent; + --bs-btn-hover-border-color: transparent; +} + +kbd { + font-family: $font-family-monospace; + color: $white; +} \ No newline at end of file diff --git a/ui/src/Styles/LightTheme.scss b/ui/src/Styles/LightTheme.scss index 90bd18bc6..2f02e3f39 100644 --- a/ui/src/Styles/LightTheme.scss +++ b/ui/src/Styles/LightTheme.scss @@ -57,6 +57,9 @@ $table-accent-bg: transparent; $card-cap-bg: inherit; +$kbd-color: $white; +$kbd-bg: $dark; + @import "./RebootlessBootstrap"; @import "bootswatch/dist/flatly/bootswatch"; @@ -91,3 +94,13 @@ $color-default: #708090; a { color: $link-color; } + +button.btn { + --bs-btn-active-border-color: transparent; + --bs-btn-hover-border-color: transparent; +} + +kbd { + font-family: $font-family-monospace; + color: $white; +} \ No newline at end of file