Material You 基本色方案标记
M3 基本色方案使用与用户生成色方案相同的角色和标记映射。有关使用颜色角色的完整详细信息,请参阅应用色方案部分。跳转到标记表 [tokens]。
浅色主题 (Light theme)
黑暗主题
使用方法
import 'package:example/palette.dart';
// ...
final Color m3BaseColor = Palette.primary[80]!;
import 'package:example/palette.dart';
// ...
// Dark theme, background
final Color background = Palette.neutral[10]!;
// Light theme, background
final Color background = Palette.primary[99]!;