Skip to content

Commit 54766ab

Browse files
committed
WIP
1 parent 2a60787 commit 54766ab

File tree

4 files changed

+507
-263
lines changed

4 files changed

+507
-263
lines changed

src/style/base/_variables.scss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ $success-color-active: color('green', 'active');
196196
--primary-color-hover: #{$primary-color-hover};
197197
--primary-color-active: #{$primary-color-active};
198198
--primary-color-light-background: #{$primary-color-light-background};
199-
--primary-color-shadow-lighter: #{$primary-color-shadow-lighter};
200199

201200
--danger-color: #{$danger-color};
202201
--danger-color-hover: #{$danger-color-hover};
@@ -223,8 +222,8 @@ $panel-gutter: 2rem;
223222
* 4. Page
224223
*/
225224
$page-gutter: 2rem;
226-
$page-side-background-color: mixins.color('gray', 100);
227-
$page-side-border-color: mixins.color('gray', 300);
225+
$page-side-background-color: hsl(0, 0%, 96%);
226+
$page-side-border-color: hsl(0, 0%, 88%);
228227
$page-side-gutter: 1rem;
229228
$page-header-height: 120px;
230229

@@ -581,7 +580,7 @@ $form-field-font-size: 1rem;
581580
/**
582581
* 9. Navigation
583582
*/
584-
$vertical-navigation-border-color: mixins.color('gray', 300);
583+
$vertical-navigation-border-color: hsl(0, 0%, 88%);
585584
$vertical-navigation-active-item-background-color: rgba(0, 0, 0, .05);
586585

587586
:root {

src/style/components/_navigation.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@use "../base/mixins";
1+
@use "../base/variables";
22

33
.vertical-navigation-container {
44
width: 100%;
@@ -51,13 +51,13 @@
5151
}
5252

5353
.navigation-primary {
54-
color: mixins.color('deepPurple', 50);
54+
color: variables.color('deep-purple', 'background');
5555

5656
.vertical-navigation-list-item {
5757
color: currentColor;
5858
}
5959

6060
.vertical-navigation-divider {
61-
background: var(--primary-color-shadow-lighter);
61+
background: var(--primary-color-light-background);
6262
}
6363
}

0 commit comments

Comments
 (0)