Skip to content

Commit

Permalink
fix: Fixed text color in DarkTheme.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Jan 19, 2023
1 parent 3a96017 commit 7927244
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions packages/katana_theme/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -290,28 +290,28 @@ packages:
name: katana
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.10+1"
version: "0.15.10+2"
katana_theme:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "1.2.9"
version: "1.2.11"
katana_theme_annotation:
dependency: transitive
description:
name: katana_theme_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.6"
version: "1.2.8"
katana_theme_builder:
dependency: "direct dev"
description:
path: "../../katana_theme_builder"
relative: true
source: path
version: "1.2.7"
version: "1.2.9"
lints:
dependency: transitive
description:
Expand Down
12 changes: 6 additions & 6 deletions packages/katana_theme/lib/src/app_theme_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ class AppThemeData {
Color onPrimaryContainer = kBlackColor,
Color onSecondaryContainer = kBlackColor,
Color onTertiaryContainer = kBlackColor,
Color onDisabled = kBlackColor,
Color onSurface = kBlackColor,
Color onDisabled = kWhiteColor,
Color onSurface = kWhiteColor,
Color onBackground = kWhiteColor,
Color onWeak = kBlackColor,
Color onError = kBlackColor,
Expand Down Expand Up @@ -1172,8 +1172,8 @@ class AppThemeData {
Color onPrimaryContainer = kBlackColor,
Color onSecondaryContainer = kBlackColor,
Color onTertiaryContainer = kBlackColor,
Color onDisabled = kBlackColor,
Color onSurface = kBlackColor,
Color onDisabled = kWhiteColor,
Color onSurface = kWhiteColor,
Color onBackground = kWhiteColor,
Color onWeak = kBlackColor,
Color onError = kBlackColor,
Expand Down Expand Up @@ -1324,8 +1324,8 @@ class AppThemeData {
onPrimaryContainer: onPrimaryContainer ?? kBlackColor,
onSecondaryContainer: onSecondaryContainer ?? kBlackColor,
onTertiaryContainer: onTertiaryContainer ?? kBlackColor,
onDisabled: onDisabled ?? kBlackColor,
onSurface: onSurface ?? kBlackColor,
onDisabled: onDisabled ?? kWhiteColor,
onSurface: onSurface ?? kWhiteColor,
onBackground: onBackground ?? kWhiteColor,
onWeak: onWeak ?? kBlackColor,
onError: onError ?? kBlackColor,
Expand Down
4 changes: 2 additions & 2 deletions packages/katana_theme/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,14 @@ packages:
name: katana
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.10+1"
version: "0.15.10+2"
katana_theme_annotation:
dependency: "direct main"
description:
name: katana_theme_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.6"
version: "1.2.8"
matcher:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion packages/katana_theme_annotation/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ packages:
name: katana
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.10+1"
version: "0.15.10+2"
logging:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/katana_theme_builder/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,14 @@ packages:
name: katana
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.10+1"
version: "0.15.10+2"
katana_theme_annotation:
dependency: "direct main"
description:
name: katana_theme_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.6"
version: "1.2.8"
logging:
dependency: transitive
description:
Expand Down

0 comments on commit 7927244

Please sign in to comment.