dark theme bg

This commit is contained in:
Martti Malmi 2021-07-28 16:47:56 +03:00
parent 4f184e7426
commit 259a7ff33b
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* dark.css: 👉 light-on-dark */
:root {
--body-bg: #1f2125;
--body-bg: #2e3036;
--text-color: #dbdcde;
--text-time: rgba(255, 255, 255, 0.45);
--main-color: #35383f;

View File

@ -118,7 +118,7 @@ function updateGroups() {
if (!hasFollows && info.followDistance >= 1) { State.local.get('noFollows').put(false); }
if (info.followDistance <= 1) {
State.local.get('groups').get('follows').get(k).put(true);
} else if (info.followDistance <= 2) {
} else if (info.followDistance == 2) {
State.local.get('groups').get('2ndDegreeFollows').get(k).put(true);
}
State.local.get('groups').get('everyone').get(k).put(true);