Plugin

ColorSighted

Removes the colorblind-friendly icons from statuses, just like 2015-2017 Discord

Appearance Accessibility
index.ts
Download

Source

src/plugins/colorSighted/index.ts
1/*
2 * FiveCord — a Discord client mod
3 * Copyright (c) 2025 FiveCord
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7import { Devs } from "@utils/constants";
8import definePlugin from "@utils/types";
9
10export default definePlugin({
11 name: "ColorSighted",
12 description: "Removes the colorblind-friendly icons from statuses, just like 2015-2017 Discord",
13 authors: [Devs.lewisakura],
14 tags: ["Appearance", "Accessibility"],
15 patches: [
16 {
17 find: "Masks.STATUS_ONLINE",
18 replacement: {
19 match: /Masks\.STATUS_(?:IDLE|DND|STREAMING|OFFLINE)/g,
20 replace: "Masks.STATUS_ONLINE"
21 }
22 },
23 {
24 find: ".AVATAR_STATUS_MOBILE_16;",
25 replacement: {
26 match: /(fromIsMobile:\i=!0,.+?)status:(\i)/,
27 // Rename field to force it to always use "online"
28 replace: '$1status_$:$2="online"'
29 }
30 }
31 ]
32});
33