Created
September 16, 2018 23:24
-
-
Save adagio/bd66b57c8e7e3260eb9e64bc8bb414ab to your computer and use it in GitHub Desktop.
Colors (Flutter+Dart)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final _color1 = Colors.red; | |
final _color2 = Colors.blueGrey[900]; | |
final _color3 = Colors.amberAccent; | |
final _color4 = Colors.pink.shade50; | |
//final _color5 = Colors.lightRed; | |
final _color6 = Colors.transparent; | |
final _color7 = const Color(0xFF013487); | |
final _color8 = const Color(0xFF4CD132); | |
//final _color9 = const Color(0xFF0134GG); | |
final _color10 = const Color(0xFFFFFF); | |
const Color _color11 = Color.fromARGB(0xFF, 0x42, 0xA5, 0xF5); | |
const Color _color12 = Color.fromARGB(255, 66, 165, 245); | |
const Color _color13 = Color.fromRGBO(66, 165, 245, 1.0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment