diff options
Diffstat (limited to 'web/pw-server/src/styles')
-rw-r--r-- | web/pw-server/src/styles/buttons.scss | 6 | ||||
-rw-r--r-- | web/pw-server/src/styles/variables.scss | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/web/pw-server/src/styles/buttons.scss b/web/pw-server/src/styles/buttons.scss index b485014..c72d9dc 100644 --- a/web/pw-server/src/styles/buttons.scss +++ b/web/pw-server/src/styles/buttons.scss @@ -1,5 +1,7 @@ -$btn-text-color: rgb(9, 105, 218); -$btn-border-color: rgba(27, 31, 36, 0.25); +@use "./variables"; + +$btn-text-color: variables.$blue-primary; +$btn-border-color: variables.$light-grey; .btn { color: $btn-text-color; diff --git a/web/pw-server/src/styles/variables.scss b/web/pw-server/src/styles/variables.scss index 257a67e..603db66 100644 --- a/web/pw-server/src/styles/variables.scss +++ b/web/pw-server/src/styles/variables.scss @@ -1 +1,3 @@ $bg-color: rgb(41, 41, 41); +$light-grey: rgba(27, 31, 36, 0.25); +$blue-primary: rgb(9, 105, 218); |