From e6415e174352bf44b5b739263dbdbf958746a8de Mon Sep 17 00:00:00 2001 From: itsmartashub <44645238+itsmartashub@users.noreply.github.com> Date: Thu, 4 Sep 2025 19:48:31 +0200 Subject: [PATCH 1/2] feat(custom/colors): Add toggle button for full accent background on user chat bubbles - Add a toggle button in the "Colors" settings section to enable full accent background on user chat bubbles - Provide an option for users to increase contrast in chat bubbles based on their preferences - Ensure the toggle integrates seamlessly with the existing settings and applies the style dynamically Changes summary: - Added a new toggle button in the "Colors" section of the settings. This allows users to enable a full accent background on their chat bubbles for higher contrast, catering to personal preferences and improving readability. --- components/Cards/Toggle.vue | 2 -- components/Custom/Colors/Index.vue | 20 ++++++++++++++++++++ components/Icons/Pipe.vue | 20 ++++++++++++++++++++ styles/customs/_custom-toggles.scss | 10 ++++++++++ styles/index.scss | 3 ++- utils/storage.js | 2 ++ 6 files changed, 54 insertions(+), 3 deletions(-) create mode 100644 components/Icons/Pipe.vue diff --git a/components/Cards/Toggle.vue b/components/Cards/Toggle.vue index 0bb336e..3220a78 100644 --- a/components/Cards/Toggle.vue +++ b/components/Cards/Toggle.vue @@ -74,8 +74,6 @@ defineExpose({ focus: () => inputRef.value?.focus(), blur: () => inputRef.value?.blur(), }) - -console.log('props.modelValue: ', props.modelValue)