Advertisement
SkysRad

Atro Color Palette

Apr 1st, 2020
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 3.43 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class AtroColors {
  4.   static const Color charade = Color(0xFF1D1D27);
  5.   static const Color ebony = Color(0xFF140F26);
  6.   static const Color mirage = Color(0xFF1C162E);
  7.   static const Color blueZodiac = Color(0xFF0D1F3B);
  8.   static const Color cloudBurst = Color(0xFF1B2E4B);
  9.   static const Color slateGray = Color(0xFF6C7B8A);
  10.   static const Color regentGray = Color(0xFF949EA5);
  11.   static const Color brightGray = Color(0xFF3B3B4D);
  12.   static const Color brightTurquoise = Color(0xFF24F0B6);
  13.   static const Color java = Color(0xFF14D2B8);
  14.   static const Color grannySmithApple = Color(0xFF9DE686);
  15.   static const Color shamrock = Color(0xFF27DB94);
  16.   static const Color jungleGreen = Color(0xFF2FAD66);
  17.   static const Color frenchRose = Color(0xFFF15887);
  18.   static const Color cerise = Color(0xFFE83F94);
  19.   static const Color carnation = Color(0xFFF54E5E);
  20.   static const Color radicalRed = Color(0xFFFF3A79);
  21.   static const Color valencia = Color(0xFFD84242);
  22.   static const Color bittersweet = Color(0xFFFF6A61);
  23.   static const Color vividTangerine = Color(0xFFFE9B86);
  24.   static const Color chardonnary = Color(0xFFFFC387);
  25.   static const Color cornflowerBlue = Color(0xFF5A7BEF);
  26.   static const Color skyBlue = Color(0xFF64CEEE);
  27.   static const Color pictonBlue = Color(0xFF2DC9EB);
  28.   static const Color dodgerBlue = Color(0xFF50A1FF);
  29.   static const Color heliotrope = Color(0xFFA573FF);
  30.   static const Color royalBlue = Color(0xFF4048EF);
  31.   static const Color opal = Color(0xFFA3BFC6);
  32.   static const Color polar = Color(0xFFEEFAFC);
  33.   static const Color white = Color(0xFFFFFFFF);
  34.  
  35.   static const LinearGradient royalGradient = LinearGradient(
  36.     begin: Alignment.topLeft,
  37.     end: Alignment.bottomRight,
  38.     colors: <Color>[
  39.       cornflowerBlue,
  40.       royalBlue,
  41.     ],
  42.   );
  43.  
  44.   static const LinearGradient heliotropeGradient = LinearGradient(
  45.     begin: Alignment.topLeft,
  46.     end: Alignment.bottomRight,
  47.     colors: <Color>[
  48.       heliotrope,
  49.       cornflowerBlue,
  50.     ],
  51.   );
  52.  
  53.   static const LinearGradient shamrockGradient = LinearGradient(
  54.     begin: Alignment.topLeft,
  55.     end: Alignment.bottomRight,
  56.     colors: <Color>[
  57.       shamrock,
  58.       java,
  59.     ],
  60.   );
  61.  
  62.   static const LinearGradient pictonGradient = LinearGradient(
  63.     begin: Alignment.topLeft,
  64.     end: Alignment.bottomRight,
  65.     colors: <Color>[
  66.       pictonBlue,
  67.       java,
  68.     ],
  69.   );
  70.  
  71.   static const LinearGradient ceriseGradient = LinearGradient(
  72.     begin: Alignment.topLeft,
  73.     end: Alignment.bottomRight,
  74.     colors: <Color>[
  75.       carnation,
  76.       cerise,
  77.     ],
  78.   );
  79.  
  80.   static const LinearGradient jungleGradient = LinearGradient(
  81.     begin: Alignment.topLeft,
  82.     end: Alignment.bottomRight,
  83.     colors: <Color>[
  84.       grannySmithApple,
  85.       jungleGreen,
  86.     ],
  87.   );
  88.  
  89.   static const LinearGradient chardonnaryGradient = LinearGradient(
  90.     begin: Alignment.topLeft,
  91.     end: Alignment.bottomRight,
  92.     colors: <Color>[
  93.       chardonnary,
  94.       bittersweet,
  95.     ],
  96.   );
  97.  
  98.   static const LinearGradient zodiacGradient = LinearGradient(
  99.     begin: Alignment.topLeft,
  100.     end: Alignment.bottomRight,
  101.     colors: <Color>[
  102.       blueZodiac,
  103.       cloudBurst,
  104.     ],
  105.   );
  106.  
  107.   static const LinearGradient tangerineGradient = LinearGradient(
  108.     begin: Alignment.topLeft,
  109.     end: Alignment.bottomRight,
  110.     colors: <Color>[
  111.       frenchRose,
  112.       vividTangerine,
  113.     ],
  114.   );
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement