diff options
Diffstat (limited to 'src/scopes/_implicit.scss')
| -rw-r--r-- | src/scopes/_implicit.scss | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/scopes/_implicit.scss b/src/scopes/_implicit.scss index 9c17868..d679bdc 100644 --- a/src/scopes/_implicit.scss +++ b/src/scopes/_implicit.scss | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | @use 'sass:meta'; | 2 | @use 'sass:meta'; |
| 3 | @use 'iro-sass/src/iro-sass' as iro; | 3 | @use 'iro-sass/src/iro-sass' as iro; |
| 4 | @use '../props'; | 4 | @use '../props'; |
| 5 | @use '../vars' as global-vars; | 5 | @use '../core'; |
| 6 | 6 | ||
| 7 | @forward 'implicit.vars'; | 7 | @forward 'implicit.vars'; |
| 8 | @use 'implicit.vars' as vars; | 8 | @use 'implicit.vars' as vars; |
| @@ -11,8 +11,8 @@ | |||
| 11 | @include props.materialize(meta.module-variables('vars')); | 11 | @include props.materialize(meta.module-variables('vars')); |
| 12 | 12 | ||
| 13 | html { | 13 | html { |
| 14 | accent-color: props.get(global-vars.$theme, --accent, --600); | 14 | accent-color: props.get(core.$theme, --accent, --600); |
| 15 | scrollbar-color: props.get(global-vars.$theme, --text-disabled) transparent; | 15 | scrollbar-color: props.get(core.$theme, --text-disabled) transparent; |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | html, | 18 | html, |
| @@ -25,8 +25,8 @@ | |||
| 25 | 25 | ||
| 26 | padding: 0; | 26 | padding: 0; |
| 27 | margin: 0; | 27 | margin: 0; |
| 28 | color: props.get(global-vars.$theme, --text); | 28 | color: props.get(core.$theme, --text); |
| 29 | background-color: props.get(global-vars.$theme, --bg-base); | 29 | background-color: props.get(core.$theme, --bg-base); |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | pre, | 32 | pre, |
| @@ -77,7 +77,7 @@ | |||
| 77 | } | 77 | } |
| 78 | 78 | ||
| 79 | small { | 79 | small { |
| 80 | font-size: props.get(global-vars.$font-size--75); | 80 | font-size: props.get(core.$font-size--75); |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | ul, | 83 | ul, |
| @@ -130,23 +130,23 @@ | |||
| 130 | input, | 130 | input, |
| 131 | textarea { | 131 | textarea { |
| 132 | &::placeholder { | 132 | &::placeholder { |
| 133 | color: props.get(global-vars.$theme, --text-mute); | 133 | color: props.get(core.$theme, --text-mute); |
| 134 | opacity: 1; | 134 | opacity: 1; |
| 135 | } | 135 | } |
| 136 | 136 | ||
| 137 | &:disabled { | 137 | &:disabled { |
| 138 | color: props.get(global-vars.$theme, --text-disabled); | 138 | color: props.get(core.$theme, --text-disabled); |
| 139 | } | 139 | } |
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | textarea { | 142 | textarea { |
| 143 | block-size: calc(1em * props.get(global-vars.$font--standard--line-height)); | 143 | block-size: calc(1em * props.get(core.$font--standard--line-height)); |
| 144 | } | 144 | } |
| 145 | 145 | ||
| 146 | hr { | 146 | hr { |
| 147 | block-size: props.get(global-vars.$border-width--thin); | 147 | block-size: props.get(core.$border-width--thin); |
| 148 | margin: 0; | 148 | margin: 0; |
| 149 | background-color: props.get(global-vars.$theme, --border-color); | 149 | background-color: props.get(core.$theme, --border-color); |
| 150 | border: 0; | 150 | border: 0; |
| 151 | } | 151 | } |
| 152 | } | 152 | } |
