From fa23ebe127801a6cda65d07a19da93a506a5020a Mon Sep 17 00:00:00 2001 From: daudix-UFO Date: Tue, 4 Apr 2023 01:28:59 +0300 Subject: [PATCH] fix: Replace comments text in `preset_utils.py` Really, why use slang in code comments? --- gradience/backend/theming/preset_utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gradience/backend/theming/preset_utils.py b/gradience/backend/theming/preset_utils.py index d96f9da0..8c57f7aa 100644 --- a/gradience/backend/theming/preset_utils.py +++ b/gradience/backend/theming/preset_utils.py @@ -73,7 +73,7 @@ class PresetUtils: "accent_fg_color": argb_to_color_code(light_theme.onPrimary), "destructive_color": argb_to_color_code(light_theme.error), "destructive_bg_color": argb_to_color_code(light_theme.errorContainer), - # Do not touch! .onError causes contrast issues! + # Avoid using .onError as it causes contrast issues "destructive_fg_color": argb_to_color_code(light_theme.onErrorContainer), "success_color": argb_to_color_code(light_theme.tertiary), "success_bg_color": argb_to_color_code(light_theme.tertiaryContainer), @@ -83,7 +83,7 @@ class PresetUtils: "warning_fg_color": argb_to_color_code(light_theme.onSecondaryContainer), "error_color": argb_to_color_code(light_theme.error), "error_bg_color": argb_to_color_code(light_theme.errorContainer), - # Do not touch + # Avoid using .onError as it causes contrast issues "error_fg_color": argb_to_color_code(light_theme.onErrorContainer), "window_bg_color": argb_to_color_code(light_theme.surface), "window_fg_color": argb_to_color_code(light_theme.onSurface), @@ -112,7 +112,7 @@ class PresetUtils: "accent_fg_color": argb_to_color_code(dark_theme.onPrimary), "destructive_color": argb_to_color_code(dark_theme.error), "destructive_bg_color": argb_to_color_code(dark_theme.errorContainer), - # No touchy + # Avoid using .onError as it causes contrast issues "destructive_fg_color": argb_to_color_code(dark_theme.onErrorContainer), "success_color": argb_to_color_code(dark_theme.tertiary), "success_bg_color": argb_to_color_code(dark_theme.tertiaryContainer), @@ -122,7 +122,7 @@ class PresetUtils: "warning_fg_color": argb_to_color_code(dark_theme.onSecondaryContainer), "error_color": argb_to_color_code(dark_theme.error), "error_bg_color": argb_to_color_code(dark_theme.errorContainer), - # Do not use .onError plz + # Avoid using .onError as it causes contrast issues "error_fg_color": argb_to_color_code(dark_theme.onErrorContainer), "window_bg_color": argb_to_color_code(dark_theme.surface), "window_fg_color": argb_to_color_code(dark_theme.onSurface),