mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
14 lines
277 B
Dart
14 lines
277 B
Dart
import 'dart:ui';
|
|
|
|
|
|
abstract final class Defaults {
|
|
static const primaryColor = Color.fromARGB(255, 145, 58, 31);
|
|
|
|
static const launchPageIdx = 0;
|
|
|
|
static const updateInterval = 3;
|
|
|
|
static const editorTheme = 'a11y-light';
|
|
static const editorDarkTheme = 'monokai';
|
|
}
|