mirror of
https://github.com/immich-app/immich.git
synced 2026-03-16 06:33:45 -04:00
Videos have recently been changed to support zooming, but this can make the controls in the centre of the screen unergonomic as they will either stay in the centre when dismissing, or stick to the video when zooming. Neither is great. We should align the behaviour with other apps which has the play/pause toggle at the bottom of the screen with the seeker bar instead. Co-authored-by: Alex <alex.tran1502@gmail.com>
13 lines
521 B
Dart
13 lines
521 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
enum ImmichColorPreset { indigo, deepPurple, pink, red, orange, yellow, lime, green, cyan, slateGray }
|
|
|
|
const ImmichColorPreset defaultColorPreset = ImmichColorPreset.indigo;
|
|
const String defaultColorPresetName = "indigo";
|
|
|
|
const Color immichBrandColorLight = Color(0xFF4150AF);
|
|
const Color immichBrandColorDark = Color(0xFFACCBFA);
|
|
const Color whiteOpacity75 = Color.fromRGBO(255, 255, 255, 0.75);
|
|
const Color red400 = Color(0xFFEF5350);
|
|
const Color grey200 = Color(0xFFEEEEEE);
|