mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 10:56:47 +01:00
25 lines
583 B
Dart
25 lines
583 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
extension ImmichColorSchemeExtensions on ColorScheme {
|
||
|
bool get _isDarkMode => brightness == Brightness.dark;
|
||
|
Color get onSurfaceSecondary => _isDarkMode
|
||
|
? onSurface.darken(amount: .3)
|
||
|
: onSurface.lighten(amount: .3);
|
||
|
}
|
||
|
|
||
|
extension ColorExtensions on Color {
|
||
|
Color lighten({double amount = 0.1}) {
|
||
|
return Color.alphaBlend(
|
||
|
Colors.white.withOpacity(amount),
|
||
|
this,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Color darken({double amount = 0.1}) {
|
||
|
return Color.alphaBlend(
|
||
|
Colors.black.withOpacity(amount),
|
||
|
this,
|
||
|
);
|
||
|
}
|
||
|
}
|