27 lines
1,011 B
Dart
27 lines
1,011 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
abstract final class FocusFlowTokens {
|
|
static const appBackground = Color(0xFF080A12);
|
|
static const panelBackground = Color(0xFF11131E);
|
|
static const elevatedPanel = Color(0xFF171925);
|
|
static const accentMagenta = Color(0xFFFF5BA8);
|
|
static const textPrimary = Color(0xFFF7F2FA);
|
|
static const textMuted = Color(0xFFB8B1C5);
|
|
static const completedText = Color(0xFF8F8A99);
|
|
static const flexibleGreen = Color(0xFF4BE064);
|
|
static const requiredPink = Color(0xFFFF4E7D);
|
|
static const appointmentBlue = Color(0xFF38A8FF);
|
|
static const restPurple = Color(0xFFB05CFF);
|
|
static const completedGray = Color(0xFF777482);
|
|
static const subtleBorder = Color(0xFF3A3A4A);
|
|
|
|
static const sidebarWidth = 250.0;
|
|
static const mainGutter = 32.0;
|
|
static const timelineRailWidth = 124.0;
|
|
|
|
static const appFrameRadius = 8.0;
|
|
static const navRadius = 8.0;
|
|
static const bannerRadius = 8.0;
|
|
static const cardRadius = 8.0;
|
|
static const modalRadius = 8.0;
|
|
}
|