Commit code. Update time: 2023-06-25

This commit is contained in:
TK
2023-06-25 11:50:55 +08:00
parent 2d74227878
commit 39a5f2fa92
244 changed files with 26147 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class Colours {
static const Color text_dark = Color(0xFF333333);
static const Color text_normal = Color(0xFF666666);
static const Color text_gray = Color(0xFF888888);
static const Color gray_33 = Color(0xFF333333);
static const Color gray_66 = Color(0xFF666666);
static const Color gray_88 = Color(0xFF888888);
static const Color gray_99 = Color(0xFF999999);
static const Color gray_5A = Color(0xFF5A5A5A);
static const Color blue_main = Color(0xFF1890FF);
static const Color indexlabel_main = Color(0xFF757575);
static const Color divider = Color(0xFFF6F6F6);
static const Color divider2 = Color(0xFFD1D1D1);
}