Advertisement
joris

Palete color

Apr 5th, 2020
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.71 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. const Color menuBlueDark = Color(0xFF011f4b);
  4. const Color smoothBlue = Color(0xFF005b96);
  5. const Color lightBlue = Color(0xFFb3cde0);
  6.  
  7. const Color googleGreen = Color(0xFF008744);
  8. const Color googleBlue = Color(0xFF0057e7);
  9. const Color googleRed = Color(0xFFd62d20);
  10. const Color googleYellow = Color(0xFFffa700);
  11.  
  12. const Color white = Color(0xFFffffff);
  13. const Color lightOrange = Color(0xFFFD7384);
  14.  
  15. const Color btRed = Color(0xFFfe4a49);
  16. const Color btBlue = Color(0xFF2ab7ca);
  17. const Color btwYellow = Color(0xFFfed766);
  18. const Color btGray = Color(0xFFe6e6ea);
  19. const Color btGrayLight = Color(0xFFf4f4f8);
  20.  
  21. const Color lightPinkDark = Color(0xFFf6abb6);
  22. const Color lightPinkMedium = Color(0xFFf4b6c2);
  23. const Color lightPink = Color(0xFFead5dc);
  24.  
  25. const Color lolipopBold = Color(0xFF009688);
  26. const Color lolipopMedium = Color(0xFF54b2a9);
  27. const Color lolipopLifght = Color(0xFF83d0c9);
  28.  
  29. const Color fbDarkBlue = Color(0xFF3b5998);
  30. const Color fbMediumBlue = Color(0xFF8b9dc3);
  31. const Color fbSoftBlue = Color(0xFFdfe3ee);
  32.  
  33. const TextStyle menuFontSizeBold = TextStyle(
  34.   fontSize: 20.0,
  35.   fontWeight: FontWeight.bold,
  36.   color: Colors.white,
  37. );
  38.  
  39. const titleStyle = TextStyle(
  40.   fontSize: 28,
  41.   fontWeight: FontWeight.w600,
  42.   color: Colors.white,
  43.   fontFamily: 'Baloo2',
  44. );
  45.  
  46. const subtitleStyle = TextStyle(
  47.   fontSize: 18,
  48.   fontWeight: FontWeight.w300,
  49.   color: white,
  50.   fontFamily: 'Baloo2',
  51. );
  52.  
  53. const menuTitleStyle = TextStyle(
  54.   fontSize: 18,
  55.   fontWeight: FontWeight.bold,
  56.   color: white,
  57.   fontFamily: 'Baloo2',
  58. );
  59.  
  60. const buttonStyle = TextStyle(
  61.   fontSize: 20,
  62.   fontWeight: FontWeight.bold,
  63.   color: white,
  64.   fontFamily: 'Baloo2',
  65. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement