mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

Forces the Fusion theme when running night mode, so we don't need to work around platform themes that don't respond to the defined palette. Feedback/suggestions on the chosen colours welcome - _vars.scss is the file to change if you want to experiment with adjustments.
28 lines
349 B
SCSS
28 lines
349 B
SCSS
@use 'vars';
|
|
|
|
.review-count {
|
|
color: vars.$day-review-count;
|
|
}
|
|
|
|
.new-count {
|
|
color: vars.$day-new-count;
|
|
}
|
|
|
|
.learn-count {
|
|
color: vars.$day-learn-count;
|
|
}
|
|
|
|
.nightMode {
|
|
.review-count {
|
|
color: vars.$night-review-count;
|
|
}
|
|
|
|
.new-count {
|
|
color: vars.$night-new-count;
|
|
}
|
|
|
|
.learn-count {
|
|
color: vars.$night-learn-count;
|
|
}
|
|
}
|
|
|