// Copyright 2021 The Flutter team. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter/material.dart'; abstract class AppColors { static const Color white50 = Color(0xFFFFFFFF); static const Color black800 = Color(0xFF121212); static const Color black900 = Color(0xFF000000); static const Color blue50 = Color(0xFFEEF0F2); static const Color blue100 = Color(0xFFD2DBE0); static const Color blue200 = Color(0xFFADBBC4); static const Color blue300 = Color(0xFF8CA2AE); static const Color blue600 = Color(0xFF4A6572); static const Color blue700 = Color(0xFF344955); static const Color blue800 = Color(0xFF232F34); static const Color orange300 = Color(0xFFFBD790); static const Color orange400 = Color(0xFFF9BE64); static const Color orange500 = Color(0xFFF9AA33); static const Color red200 = Color(0xFFCF7779); static const Color red400 = Color(0xFFFF4C5D); static const Color white50Alpha060 = Color(0x99FFFFFF); static const Color blue50Alpha060 = Color(0x99EEF0F2); static const Color black900Alpha020 = Color(0x33000000); static const Color black900Alpha087 = Color(0xDE000000); static const Color black900Alpha060 = Color(0x99000000); static const Color greyLabel = Color(0xFFAEAEAE); static const Color darkBottomAppBarBackground = Color(0xFF2D2D2D); static const Color darkDrawerBackground = Color(0xFF353535); static const Color darkCardBackground = Color(0xFF1E1E1E); static const Color darkChipBackground = Color(0xFF2A2A2A); static const Color lightChipBackground = Color(0xFFE5E5E5); }