mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-14 13:20:17 +08:00
12 lines
314 B
Dart
12 lines
314 B
Dart
import 'package:flutter/widgets.dart' show Color;
|
|
|
|
abstract final class BiliColors {
|
|
static const pinkLight = Color(0xFFFF6699);
|
|
static const pinkDark = Color(0xFFD44E7D);
|
|
|
|
static const blueLight = Color(0xFF008AC5);
|
|
static const blueDark = Color(0xFF2C9CC8);
|
|
|
|
static const yellow = Color(0xFFFFCC00);
|
|
}
|