mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
367 B
16 lines
367 B
// ignore_for_file: public_member_api_docs
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
abstract class AppColors {
|
|
static const Color white = Color(0xFFFFFFFF);
|
|
|
|
static const Color darkBlue = Color(0xFF0C32A4);
|
|
|
|
static const Color orange = Color(0xFFFFEE02);
|
|
|
|
static const Color blue = Color(0xFF4B94F6);
|
|
|
|
static const Color transparent = Color(0x00000000);
|
|
}
|