Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase contrast of togglables unchecked border #667

Merged
merged 3 commits into from
Mar 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions lib/src/widgets/yaru_togglable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,14 @@ abstract class YaruTogglableState<S extends YaruTogglable> extends State<S>
}

void fillPainterDefaults(YaruTogglablePainter painter) {
final colorScheme = Theme.of(context).colorScheme;
final theme = Theme.of(context);
final colorScheme = theme.colorScheme;

// Normal colors
final uncheckedColor = colorScheme.surface;
final uncheckedBorderColor = colorScheme.onSurface.withOpacity(.3);
final uncheckedBorderColor = theme.brightness == Brightness.light
? const Color(0xFF959595)
: const Color(0xFF757575);
final checkedColor = colorScheme.primary;
const checkedBorderColor = Colors.transparent;
final checkmarkColor = colorScheme.onPrimary;
Expand Down
Binary file modified test/widgets/goldens/yaru_check_button-unchecked-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_check_button-unchecked-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_check_button-unckecked-focused-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_check_button-unckecked-hovered-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_check_button-unckecked-pressed-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unchecked-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unchecked-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unckecked-focused-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unckecked-focused-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unckecked-hovered-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unckecked-hovered-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unckecked-pressed-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox-unckecked-pressed-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox_list_tile-unchecked-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_checkbox_list_tile-unchecked-light.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_popup_menu_item-unchecked-dark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/widgets/goldens/yaru_popup_menu_item-unchecked-light.png
Binary file modified test/widgets/goldens/yaru_radio-unchecked-dark.png
Binary file modified test/widgets/goldens/yaru_radio-unchecked-light.png
Binary file modified test/widgets/goldens/yaru_radio-unckecked-focused-dark.png
Binary file modified test/widgets/goldens/yaru_radio-unckecked-focused-light.png
Binary file modified test/widgets/goldens/yaru_radio-unckecked-hovered-dark.png
Binary file modified test/widgets/goldens/yaru_radio-unckecked-hovered-light.png
Binary file modified test/widgets/goldens/yaru_radio-unckecked-pressed-dark.png
Binary file modified test/widgets/goldens/yaru_radio-unckecked-pressed-light.png
Binary file modified test/widgets/goldens/yaru_radio_button-unchecked-dark.png
Binary file modified test/widgets/goldens/yaru_radio_button-unchecked-light.png
Binary file modified test/widgets/goldens/yaru_radio_button-unckecked-focused-dark.png
Binary file modified test/widgets/goldens/yaru_radio_button-unckecked-focused-light.png
Binary file modified test/widgets/goldens/yaru_radio_button-unckecked-hovered-light.png
Binary file modified test/widgets/goldens/yaru_radio_list_tile-unchecked-dark.png
Binary file modified test/widgets/goldens/yaru_radio_list_tile-unchecked-light.png