mirror of
https://github.com/immich-app/immich.git
synced 2026-05-23 08:02:29 -04:00
d4a97f2d25
* refactor: app metadata * refactor to per row store * cleanup * more test * review changes * more refactor * refactor * migrate primary color * migrate dynamic theme * migrate colorfulInterface * cleanup providers --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
10 lines
401 B
Dart
10 lines
401 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
enum ImmichColorPreset { indigo, deepPurple, pink, red, orange, yellow, lime, green, cyan, slateGray }
|
|
|
|
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);
|