Update tokens to v6.1 (#153722)

This PR is to update the token version to v6.1. 
* This version fixes https://github.com/flutter/flutter/issues/153271
* Change the chip default border color from `ColorScheme.outline` to `ColorScheme.outlineVariant`. The Chips' border color is softened to improve visual hierarchy between chips and buttons
This commit is contained in:
Qun Cheng
2024-09-03 17:20:16 -07:00
committed by GitHub
parent 67a75d240e
commit 182c266961
74 changed files with 90 additions and 86 deletions

View File

@@ -50,7 +50,7 @@ void main() {
await tester.tap(find.byType(FilterChip));
await tester.pumpAndSettle();
expect(findBorderColor(const Color(0xff79747e)), findsOne);
expect(findBorderColor(const Color(0xffcac4d0)), findsOne);
},
);
}