diff options
author | Volpeon <git@volpeon.ink> | 2024-10-19 23:07:45 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-10-19 23:07:45 +0200 |
commit | ed17614d8fb9129262aaebfbd4289964225762bd (patch) | |
tree | 7302c9a2e3ea238c221e4bb269de64a5fc815a4d /src | |
parent | Fix (diff) | |
download | iro-design-ed17614d8fb9129262aaebfbd4289964225762bd.tar.gz iro-design-ed17614d8fb9129262aaebfbd4289964225762bd.tar.bz2 iro-design-ed17614d8fb9129262aaebfbd4289964225762bd.zip |
Fix again
Diffstat (limited to 'src')
-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 | } |