Skip to content

Commit

Permalink
common monos for foregrounds and backgrounds
Browse files Browse the repository at this point in the history
  • Loading branch information
aprosail committed May 19, 2024
2 parents 337ff69 + 165c7c6 commit 67be86b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.0

- Common mono colors for foregrounds and backgrounds.
- Apply strict lint options.

## 0.0.0

- Initial version as placeholder.
Expand Down
5 changes: 1 addition & 4 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
include: package:flutter_lints/flutter.yaml

# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
include: package:strict_lints/strict_lints.yaml
7 changes: 7 additions & 0 deletions lib/src/basic.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,11 @@ extension MonoColors on Color {
static const transparent = Color(0x00000000);
static const white = Color(0xffffffff);
static const black = Color(0xff000000);

static const snow = Color(0xfffcfdfe);
static const paper = Color(0xffefedea);
static const lunar = Color(0xffdcdcdc);
static const ink = Color(0xff343637);
static const night = Color(0xff232526);
static const coal = Color(0xff1a1918);
}
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: color_chart
description: A non-material and classified color chart for Flutter development.
version: 0.0.0
version: 0.1.0
repository: https://github.com/aprosail/color-chart
environment: {sdk: ">=3.3.4 <4.0.0", flutter: ">=3.3.0"}
environment: {sdk: ">=3.4.0 <4.0.0", flutter: ">=3.22.0"}
topics:
- flutter
- color
Expand All @@ -13,4 +13,4 @@ dependencies:

dev_dependencies:
flutter_test: {sdk: flutter}
flutter_lints: ^4.0.0
strict_lints: ^0.1.0

0 comments on commit 67be86b

Please sign in to comment.