-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpet_colors.dart
64 lines (53 loc) · 1.99 KB
/
pet_colors.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import 'package:flutter/widgets.dart';
abstract class PetColors {
PetColors._();
static const transparent = Color.fromARGB(0, 0, 0, 0);
static const black = Color.fromARGB(255, 0, 0, 0);
static const black8 = Color.fromARGB(25 * 8, 0, 0, 0);
static const black6 = Color.fromARGB(25 * 6, 0, 0, 0);
static const black5 = Color.fromARGB(25 * 5, 0, 0, 0);
static const black4 = Color.fromARGB(25 * 4, 0, 0, 0);
static const black2 = Color.fromARGB(51, 0, 0, 0);
static const black1 = Color.fromARGB(25, 0, 0, 0);
static const black05 = Color.fromARGB(12, 0, 0, 0);
static const primary = Color.fromARGB(255, 255, 201, 60);
static const secondary = Color.fromARGB(255, 237, 73, 86);
static const white = Color.fromARGB(255, 255, 255, 255);
static const white8 = Color.fromRGBO(255, 255, 255, 0.8);
static const white6 = Color.fromRGBO(255, 255, 255, 0.6);
static const white1 = Color.fromARGB(25, 255, 255, 255);
static const white05 = Color.fromARGB(12, 255, 255, 255);
static const error = Color.fromARGB(255, 212, 56, 13);
static const success = Color.fromARGB(255, 124, 179, 5);
static const facebook_color = Color.fromRGBO(59, 89, 152, 1);
static const like_color_1 = Color.fromARGB(255, 237, 73, 86);
static const like_color_2 = Color.fromARGB(255, 255, 201, 60);
static const gradient_text = LinearGradient(
colors: [
PetColors.like_color_1,
PetColors.like_color_2,
],
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
stops: [0.5, 1],
tileMode: TileMode.repeated,
);
static const gradient_icon = LinearGradient(
colors: [
PetColors.secondary,
PetColors.primary,
],
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
stops: [0.5, 1],
tileMode: TileMode.repeated,
);
static const gradient_button = LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Color.fromRGBO(237, 73, 86, 1),
Color.fromRGBO(255, 201, 60, 1),
],
);
}