colors.dart
1.63 KB
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
import 'package:flutter/material.dart';
class Colours {
static const Color app_main = Color(0xFF4688FA);
static const Color dark_app_main = Color(0xFF3F7AE0);
static const Color bg_color = Color(0xfff1f1f1);
static const Color dark_bg_color = Color(0xFF18191A);
static const Color material_bg = Color(0xFFFFFFFF);
static const Color dark_material_bg = Color(0xFF303233);
static const Color text = Color(0xFF333333);
static const Color dark_text = Color(0xFFB8B8B8);
static const Color text_gray = Color(0xFF999999);
static const Color dark_text_gray = Color(0xFF666666);
static const Color text_gray_c = Color(0xFFcccccc);
static const Color dark_button_text = Color(0xFFF2F2F2);
static const Color bg_gray = Color(0xFFF6F6F6);
static const Color dark_bg_gray = Color(0xFF1F1F1F);
static const Color line = Color(0xFFEEEEEE);
static const Color dark_line = Color(0xFF3A3C3D);
static const Color red = Color(0xFFFF4759);
static const Color dark_red = Color(0xFFE03E4E);
static const Color text_disabled = Color(0xFFD4E2FA);
static const Color dark_text_disabled = Color(0xFFCEDBF2);
static const Color button_disabled = Color(0xFF96BBFA);
static const Color dark_button_disabled = Color(0xFF83A5E0);
static const Color unselected_item_color = Color(0xffbfbfbf);
static const Color dark_unselected_item_color = Color(0xFF4D4D4D);
static const Color bg_gray_ = Color(0xFFFAFAFA);
static const Color dark_bg_gray_ = Color(0xFF242526);
static const Color gradient_blue = Color(0xFF5793FA);
static const Color shadow_blue = Color(0x805793FA);
static const Color orange = Color(0xFFFF8547);
}