mirror of
https://github.com/hiddify/hiddify-next.git
synced 2026-07-05 21:12:42 +08:00
7 lines
202 B
Dart
7 lines
202 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
abstract class ConnectionButtonColor {
|
|
static const connected = Color.fromRGBO(89, 140, 82, 1);
|
|
static const disconnected = Color.fromRGBO(74, 77, 139, 1);
|
|
}
|