diff --git a/package.json b/package.json index 97639e6f..11f5f740 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "frankerfacez", "author": "Dan Salvato LLC", - "version": "4.6.2", + "version": "4.7.0", "description": "FrankerFaceZ is a Twitch enhancement suite.", "license": "Apache-2.0", "scripts": { diff --git a/src/modules/chat/index.js b/src/modules/chat/index.js index 5a00afd6..7bea8dff 100644 --- a/src/modules/chat/index.js +++ b/src/modules/chat/index.js @@ -592,6 +592,16 @@ export default class Chat extends Module { } }); + this.settings.add('chat.filtering.mention-color', { + default: '', + ui: { + path: 'Chat > Filtering >> Appearance', + title: 'Custom Highlight Color', + component: 'setting-color-box', + description: 'If this is set, highlighted messages with no default color set will use this color rather than red.' + } + }); + this.settings.add('chat.filtering.highlight-mentions', { default: false, ui: { diff --git a/src/modules/main_menu/components/setting-color-box.vue b/src/modules/main_menu/components/setting-color-box.vue index 2a28c9f8..52e02063 100644 --- a/src/modules/main_menu/components/setting-color-box.vue +++ b/src/modules/main_menu/components/setting-color-box.vue @@ -45,6 +45,8 @@