27 lines
981 B
Dart
27 lines
981 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Globals {
|
|
Globals._();
|
|
|
|
static const String RP_AUTH_BASE_URL = "auth.reflex-platform.com";
|
|
static const String RP_AUTH_REALM = "reflex-platform";
|
|
static const String RP_AUTH_CLIENT_ID = "your_client_id_here";
|
|
|
|
static const String RP_GRPC_HOST = 'grpc.core.reflex-platform.com';
|
|
static const int RP_GRPC_PORT = 443;
|
|
|
|
|
|
static const Color RP_BG_COLOR = Color(0xfffcfcfd);
|
|
static const Color RP_BG_DARK_COLOR = Color(0xfff5f7f9);
|
|
|
|
static const Color RP_PRIMARY_COLOR = Color(0xff002151);
|
|
static const Color RP_PRIMARY_DARK_COLOR = Color(0xff335373);
|
|
static const Color RP_PRIMARY_LIGHT_COLOR = Color(0xffd9f1fb);
|
|
static const Color RP_PRIMARY_HOVER_COLOR = Color(0xff5DCEFF);
|
|
|
|
static const Color RP_DANGER_COLOR = Color(0xffdc3545);
|
|
static const Color RP_SUCCESS_COLOR = Color(0xff28a745);
|
|
static const Color RP_SECONDARY_COLOR = Color(0xff6c757d);
|
|
static const Color RP_LIGHT_COLOR = Color(0xffe9ecef);
|
|
}
|