mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-26 11:17:22 +08:00
8 lines
221 B
Dart
8 lines
221 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
extension ThemeDataExtension on ThemeData {
|
|
Color get readGrey => colorScheme.onSurface.withOpacity(0.6);
|
|
|
|
Color get metadataColor => colorScheme.onSurface.withOpacity(0.8);
|
|
}
|