aea0a6fcc6
Running and testing should be working on the three platforms, but there's still a fair bit that needs to be done: - Wheel building + testing in a venv still needs to be implemented. - Python requirements still need to be compiled with piptool and pinned; need to compile on all platforms then merge - Cargo deps in cargo/ and rslib/ need to be cleaned up, and ideally unified into one place - Currently using rustls to work around openssl compilation issues on Linux, but this will break corporate proxies with custom SSL authorities; need to conditionally use openssl or use https://github.com/seanmonstar/reqwest/pull/1058 - Makefiles and docs still need cleaning up - It may make sense to reparent ts/* to the top level, as we don't nest the other modules under a specific language. - rspy and pylib must always be updated in lock-step, so merging rspy into pylib as a private module would simplify things. - Merging desktop-ftl and mobile-ftl into the core ftl would make managing and updating translations easier. - Obsolete scripts need removing. - And probably more.
51 lines
1.2 KiB
SCSS
51 lines
1.2 KiB
SCSS
/* Copyright: Ankitects Pty Ltd and contributors
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
:root {
|
|
--text-fg: black;
|
|
--window-bg: #ececec;
|
|
--frame-bg: white;
|
|
--border: #aaa;
|
|
--faint-border: #e7e7e7;
|
|
--link: #00a;
|
|
--review-count: #0a0;
|
|
--new-count: #00a;
|
|
--learn-count: #c35617;
|
|
--zero-count: #ddd;
|
|
--slightly-grey-text: #333;
|
|
--highlight-bg: #77ccff;
|
|
--highlight-fg: black;
|
|
--disabled: #777;
|
|
--flag1-bg: #ffaaaa;
|
|
--flag2-bg: #ffb347;
|
|
--flag3-bg: #82e0aa;
|
|
--flag4-bg: #85c1e9;
|
|
--suspended-bg: #ffffb2;
|
|
--marked-bg: #cce;
|
|
--tooltip-bg: #fcfcfc;
|
|
}
|
|
|
|
:root[class*="night-mode"] {
|
|
--text-fg: white;
|
|
--window-bg: #2f2f31;
|
|
--frame-bg: #3a3a3a;
|
|
--border: #777;
|
|
--faint-border: #29292b;
|
|
--link: #77ccff;
|
|
--review-count: #5ccc00;
|
|
--new-count: #77ccff;
|
|
--learn-count: #ff935b;
|
|
--zero-count: #444;
|
|
--slightly-grey-text: #ccc;
|
|
--highlight-bg: #77ccff;
|
|
--highlight-fg: white;
|
|
--disabled: #777;
|
|
--flag1-bg: #aa5555;
|
|
--flag2-bg: #aa6337;
|
|
--flag3-bg: #33a055;
|
|
--flag4-bg: #3581a9;
|
|
--suspended-bg: #aaaa33;
|
|
--marked-bg: #77c;
|
|
--tooltip-bg: #272727;
|
|
}
|