diff options
-rw-r--r-- | src/_themes.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/_themes.scss b/src/_themes.scss index b460baf..bfce7d9 100644 --- a/src/_themes.scss +++ b/src/_themes.scss | |||
@@ -56,17 +56,17 @@ | |||
56 | } | 56 | } |
57 | 57 | ||
58 | @include iro.bem-theme('50') { | 58 | @include iro.bem-theme('50') { |
59 | background-color: props.get(vars.$theme, --base --50); | 59 | background-color: props.get(vars.$theme, --base, --50); |
60 | 60 | ||
61 | @include iro.bem-suffix('light') { | 61 | @include iro.bem-suffix('light') { |
62 | @media (prefers-color-scheme: light) { | 62 | @media (prefers-color-scheme: light) { |
63 | background-color: props.get(vars.$theme, --base --50); | 63 | background-color: props.get(vars.$theme, --base, --50); |
64 | } | 64 | } |
65 | } | 65 | } |
66 | 66 | ||
67 | @include iro.bem-suffix('dark') { | 67 | @include iro.bem-suffix('dark') { |
68 | @media (prefers-color-scheme: dark) { | 68 | @media (prefers-color-scheme: dark) { |
69 | background-color: props.get(vars.$theme, --base --50); | 69 | background-color: props.get(vars.$theme, --base, --50); |
70 | } | 70 | } |
71 | } | 71 | } |
72 | } | 72 | } |