Initial commit

This commit is contained in:
vjrj 2018-06-08 11:30:33 +02:00
commit c4438365ab
78 changed files with 1900 additions and 0 deletions

11
lib/colors.dart Normal file
View file

@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
const fires50 = const Color(0xFFFBE9E7);
const fires100 = const Color(0xFFFFCCBC);
const fires300 = const Color(0xFFFF8A65);
const fires600 = const Color(0xFFF4511E);
const fires900 = const Color(0xFFBF360C);
const firesErrorRed = const Color(0xFFDD2C00);
const firesSurfaceWhite = fires50;
const firesBackgroundWhite = Colors.white;