From c9396c3bedba94aef10897abd89a365468dc84fb Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Sat, 29 Jan 2022 00:06:14 +0100 Subject: [PATCH] feat: change default color, add color for dark mode --- src/components/Button.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/Button.vue b/src/components/Button.vue index 29cdbd8..39ae646 100644 --- a/src/components/Button.vue +++ b/src/components/Button.vue @@ -35,12 +35,16 @@ export default { transition: all 0.1s ease-out; font-weight: bold; - background-color: $sebin-hair-primary; + background-color: $bg-color-light; text-decoration: none; text-align: center; - @include button($sebin-hair-primary); + @include button($bg-color-light); + + @include theme(dark) { + @include button($bg-color-dark); + } &:hover { top: -0.25em;