File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ void main() {
81
81
);
82
82
83
83
final theme = MacosIconTheme .of (capturedContext);
84
- expect (theme.color, CupertinoColors .activeBlue.color );
84
+ expect (theme.color, const MacosColor ( 0xbe0981ff ) );
85
85
expect (theme.size, 20 );
86
86
});
87
87
}
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ void main() {
96
96
97
97
final theme = MacosPopupButtonTheme .of (capturedContext);
98
98
expect (theme.backgroundColor, const Color (0xffffffff ));
99
- expect (theme.highlightColor, const Color ( 0xff007aff ));
99
+ expect (theme.highlightColor, const MacosColor ( 0xbe0981ff ));
100
100
expect (theme.popupColor, const Color (0xfff2f2f7 ));
101
101
});
102
102
});
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ void main() {
97
97
98
98
final theme = MacosPulldownButtonTheme .of (capturedContext);
99
99
expect (theme.backgroundColor, const Color (0xffffffff ));
100
- expect (theme.highlightColor, const Color ( 0xff007aff ));
100
+ expect (theme.highlightColor, const MacosColor ( 0xbe0981ff ));
101
101
expect (theme.pulldownColor, const Color (0xfff2f2f7 ));
102
102
});
103
103
});
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ void main() {
80
80
);
81
81
82
82
final theme = MacosSearchFieldTheme .of (capturedContext);
83
- expect (theme.highlightColor, const Color ( 0xff007aff ));
83
+ expect (theme.highlightColor, const MacosColor ( 0xbe0981ff ));
84
84
expect (theme.resultsBackgroundColor, const Color (0xfff2f2f7 ));
85
85
});
86
86
});
You can’t perform that action at this time.
0 commit comments