selfprivacy.org.app/lib/config/brand_colors.dart

18 lines
364 B
Dart
Raw Normal View History

2020-11-29 22:07:46 +02:00
import 'package:flutter/material.dart';
class BrandColors {
static const Color blue = Color(0xFF093CEF);
2020-12-01 21:08:19 +02:00
static const List<Color> uninitializedGradientColors = [
Color(0xFF555555),
Color(0xFFABABAB),
];
2020-12-30 16:13:25 +02:00
2020-12-01 21:08:19 +02:00
static const List<Color> warningGradientColors = [
Color(0xFFEF4E09),
Color(0xFFEFD135),
];
2020-12-10 22:33:19 +02:00
2022-06-05 22:36:32 +03:00
static const Color primary = blue;
2020-11-29 22:07:46 +02:00
}