mirror of https://github.com/flutter/samples.git
10 lines
347 B
10 lines
347 B
6 years ago
|
import 'package:flutter_web/material.dart';
|
||
|
import 'package:flutter_web_ui/ui.dart';
|
||
|
|
||
|
class Constants {
|
||
|
static final Color backgroundColor = const Color(0xFF000020);
|
||
|
static final Color timelineLineColor = Color(0x60FFFFFF);
|
||
|
static final Color milestoneColor = Color(0x40FFFFFF);
|
||
|
static final Color milestoneTimelineColor = Colors.white;
|
||
|
}
|