mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
use a darker rather than lighter border in night mode
This commit is contained in:
parent
91c2825551
commit
d7d4fcb178
4 changed files with 6 additions and 5 deletions
|
@ -33,7 +33,7 @@
|
||||||
vars.$fusion-button-gradient-start 0%,
|
vars.$fusion-button-gradient-start 0%,
|
||||||
vars.$fusion-button-gradient-end 100%);
|
vars.$fusion-button-gradient-end 100%);
|
||||||
box-shadow: 0 0 3px vars.$fusion-button-outline;
|
box-shadow: 0 0 3px vars.$fusion-button-outline;
|
||||||
border: 1px solid vars.$night-faint-border;
|
border: 1px solid vars.$fusion-button-border;
|
||||||
|
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
|
|
@ -23,7 +23,7 @@ $night-text-fg: white;
|
||||||
$night-window-bg: #2f2f31;
|
$night-window-bg: #2f2f31;
|
||||||
$night-frame-bg: #3a3a3a;
|
$night-frame-bg: #3a3a3a;
|
||||||
$night-border: #777;
|
$night-border: #777;
|
||||||
$night-faint-border: #444;
|
$night-faint-border: #29292B;
|
||||||
$night-link: #aaf;
|
$night-link: #aaf;
|
||||||
$night-review-count: #7CFC00;
|
$night-review-count: #7CFC00;
|
||||||
$night-new-count: #77ccff;
|
$night-new-count: #77ccff;
|
||||||
|
@ -40,8 +40,9 @@ $night-flag4-bg: #3581a9;
|
||||||
$night-suspended-bg: #aaaa33;
|
$night-suspended-bg: #aaaa33;
|
||||||
$night-marked-bg: #77c;
|
$night-marked-bg: #77c;
|
||||||
|
|
||||||
/* night-mode specific colours */
|
/* night-mode-specific colours */
|
||||||
$fusion-button-gradient-start: #363636;
|
$fusion-button-gradient-start: #363636;
|
||||||
$fusion-button-gradient-end: #404040;
|
$fusion-button-gradient-end: #404040;
|
||||||
$fusion-button-outline: #000;
|
$fusion-button-outline: #000;
|
||||||
$fusion-button-hover-bg: #454545;
|
$fusion-button-hover-bg: #454545;
|
||||||
|
$fusion-button-border: #444;
|
||||||
|
|
|
@ -60,6 +60,6 @@ button {
|
||||||
|
|
||||||
.nightMode {
|
.nightMode {
|
||||||
#outer {
|
#outer {
|
||||||
border-top-color: vars.$night-border;
|
border-top-color: vars.$night-faint-border;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,6 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
border-bottom-color: vars.$night-border;
|
border-bottom-color: vars.$night-faint-border;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue