colors.dart 387 B

12345678910111213141516171819
  1. import 'package:flutter/material.dart';
  2. //主颜色
  3. const PRIMARY_COLOR = Color(0xFFC2524D);
  4. //辅助色
  5. const SUB_COLOR = Color(0xFFA6554F);
  6. //背景色
  7. const BG_COLOR = Color(0xFF2E3049);
  8. //辅助背景色
  9. const BG_SUB_COLOR = Color(0xFF232437);
  10. const PLACEHOLDER_COLOR = Color(0xFF727785);
  11. const CELL_COLOR = Color(0xFF3A3D5C);
  12. const PAGE_BACKGROUND_COLOR = Color(0xFF1B1C2C);