16 lines
341 B
SCSS
16 lines
341 B
SCSS
:host-context(body.dark)account-motion:nth-child(even) {
|
|
filter: brightness(1);
|
|
}
|
|
|
|
:host-context(body.dark)account-motion:nth-child(odd) {
|
|
filter: brightness(1.75);
|
|
}
|
|
|
|
:host-context(body.light)account-motion:nth-child(even) {
|
|
filter: brightness(0.75);
|
|
}
|
|
|
|
:host-context(body.light)account-motion:nth-child(odd) {
|
|
filter: brightness(1);
|
|
}
|