From 8691469ff18985225c1745dc868d56c3e85fd1b5 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Tue, 29 Dec 2020 22:54:16 -0600 Subject: [PATCH] Colorblind mode --- CHANGELOG.md | 4 + README.md | 7 +- chat/ChatView.vue | 4 + chat/ConversationView.vue | 4 +- chat/SettingsView.vue | 14 +- chat/assets/filters.svg | 79 ++++++++ chat/common.ts | 1 + chat/interfaces.ts | 1 + docs/_config.yml | 2 +- electron/Index.vue | 12 +- electron/package.json | 2 +- package.json | 2 +- scss/_rising.scss | 95 +++++----- scss/themes/_chat.scss | 8 + scss/themes/_colorblind.scss | 40 ++++ scss/themes/chat/dark.scss | 9 + scss/themes/chat/default.scss | 25 +++ scss/themes/chat/light.scss | 9 + scss/themes/variables/_dark_variables.scss | 4 + scss/themes/variables/_default_variables.scss | 4 + scss/themes/variables/_light_variables.scss | 4 + scss/util/accecss.scss | 175 ++++++++++++++++++ 22 files changed, 445 insertions(+), 60 deletions(-) create mode 100644 chat/assets/filters.svg create mode 100644 scss/themes/_colorblind.scss create mode 100644 scss/util/accecss.scss diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ac3bae..861ff4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.8.0 +* Added colorblind mode (settings -> rising -> colorblind mode) + + ## 1.7.0 * Option for serving ads in random order * Fixed Twitter previews crashing the app diff --git a/README.md b/README.md index 0954309..d1e7b37 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Download -[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.7.0/F-Chat-Rising-1.7.0-win.exe) (75 MB) -| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.7.0/F-Chat-Rising-1.7.0-macos.dmg) (76 MB) -| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.7.0/F-Chat-Rising-1.7.0-linux.AppImage) (76 MB) +[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.8.0/F-Chat-Rising-1.8.0-win.exe) (75 MB) +| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.8.0/F-Chat-Rising-1.8.0-macos.dmg) (76 MB) +| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.8.0/F-Chat-Rising-1.8.0-linux.AppImage) (76 MB) # F-Chat Rising @@ -66,6 +66,7 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0 * PM list shows characters' online status as a colored icon * Use `Ctrl+Tab`, `Ctrl+Shift+Tab`, `Ctrl+PgDown`, and `Ctrl+PgUp` to switch between character tabs * Show number of unread notes and messages in the bottom right corner + * Colorblind mode * Technical Details for Nerds * Upgraded to Electron 10.x * Replaced `node-spellchecker` with the built-in spellchecker that ships with Electron 8+ diff --git a/chat/ChatView.vue b/chat/ChatView.vue index 88208c4..f2c787f 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -362,6 +362,10 @@ getClasses(conversation: Conversation): string { return conversation === core.conversations.selectedConversation ? ' active' : unreadClasses[conversation.unread]; } + + isColorblindModeActive(): boolean { + return core.state.settings.risingColorblindMode; + } } diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index 749edb1..c2ba950 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -785,8 +785,8 @@ padding-bottom: 2px; &.unicorn { - background-color: #00adad; - border: solid 1px #1d9a9a; + background-color: var(--scoreUnicornMatchBg); + border: 1px solid var(--scoreUnicornMatchFg); box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.5); &::before { diff --git a/chat/SettingsView.vue b/chat/SettingsView.vue index 6de751a..8f6d8f8 100644 --- a/chat/SettingsView.vue +++ b/chat/SettingsView.vue @@ -192,6 +192,13 @@ +
+ +
+