flutter_brand_palettes 0.1.2
flutter_brand_palettes: ^0.1.2 copied to clipboard
Set of declarative and object-oriented classes for the color palettes of the Material Design and of popular brands and companies.
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased] #
- The remaining of Material Design color palettes;
- Much More brand color palettes;
- Color palettes' gradient color array;
- The brands' official logos and icons downloaded from their official web sites.
[0.1.2] - 2021-04-12 #
Added #18 #
- Material design's amber color palette;
- Material design's amber accent color palette;
- Material design's orange color palette;
- Material design's orange accent color palette;
- Material design's deep orange color palette;
- Material design's deep orange accent color palette;
- Material design's yellow color palette;
- Material design's yellow accent color palette.
[0.1.1] - 2021-04-10 #
[0.1.0] - 2021-04-09 #
Changed (Breaking) #
- Rename Slack class' constructor from "albergine" to "aubergine".
[0.0.15] - 2021-04-09 #
[0.0.10] - 2021-04-08 #
Added #
-
Brown class (alias for Flutter's brown swatch)
- Brown() ≡ (default) Colors.brown.shade500;
- Brown.ultraLight() ≡ Colors.brown.shade50;
- Brown.veryLight() ≡ Colors.brown.shade100;
- Brown.light() ≡ Colors.brown.shade200;
- Brown.lighter() ≡ Colors.brown.shade300;
- Brown.bitLighter() ≡ Colors.brown.shade400;
- Brown.bitDarker() ≡ Colors.brown.shade600;
- Brown.darker() ≡ Colors.brown.shade700;
- Brown.dark() ≡ Colors.brown.shade800;
- Brown.veryDark() ≡ Colors.brown.shade900.
-
BlueGrey class (alias for Flutter's blueGrey swatch)
- BlueGrey() ≡ (default) Colors.blueGrey.shade500;
- BlueGrey.ultraLight() ≡ Colors.blueGrey.shade50;
- BlueGrey.veryLight() ≡ Colors.blueGrey.shade100;
- BlueGrey.light() ≡ Colors.blueGrey.shade200;
- BlueGrey.lighter() ≡ Colors.blueGrey.shade300;
- BlueGrey.bitLighter() ≡ Colors.blueGrey.shade400;
- BlueGrey.bitDarker() ≡ Colors.blueGrey.shade600;
- BlueGrey.darker() ≡ Colors.blueGrey.shade700;
- BlueGrey.dark() ≡ Colors.blueGrey.shade800;
- BlueGrey.veryDark() ≡ Colors.blueGrey.shade900.
-
Grey class (alias for Flutter's grey swatch)
- Grey() ≡ (default) Colors.grey.shade500;
- Grey.ultraLight() ≡ Colors.grey.shade50;
- Grey.veryLight() ≡ Colors.grey.shade100;
- Grey.light() ≡ Colors.grey.shade200;
- Grey.lighter() ≡ Colors.grey.shade300;
- Grey.pressedLight() ≡ Colors.grey[350];
- Grey.bitLighter() ≡ Colors.grey.shade400;
- Grey.bitDarker() ≡ Colors.grey.shade600;
- Grey.darker() ≡ Colors.grey.shade700;
- Grey.dark() ≡ Colors.grey.shade800;
- Grey.bgDark() ≡ Colors.grey[850];
- Grey.veryDark() ≡ Colors.grey.shade900.