diff --git a/lib/styles/colors.dart b/lib/styles/colors.dart index 428644fc..c8de2dfd 100644 --- a/lib/styles/colors.dart +++ b/lib/styles/colors.dart @@ -7,6 +7,7 @@ class AppColors { /// Common final Color accent1 = Color(0xFFE4935D); final Color accent2 = Color(0xFFBEABA1); + final Color accent3 = Color(0xFFC47642); final Color offWhite = Color(0xFFF8ECE5); final Color caption = const Color(0xFF7D7873); final Color body = const Color(0xFF514F4D); diff --git a/lib/ui/screens/editorial/widgets/_circular_title_bar.dart b/lib/ui/screens/editorial/widgets/_circular_title_bar.dart index ec9b3c17..c22eaf31 100644 --- a/lib/ui/screens/editorial/widgets/_circular_title_bar.dart +++ b/lib/ui/screens/editorial/widgets/_circular_title_bar.dart @@ -133,7 +133,7 @@ class _AnimatedCircleWithTextState extends State<_AnimatedCircleWithText> with S Widget _buildCircularText(String title) { final textStyle = $styles.text.monoTitleFont.copyWith( fontSize: 22 * $styles.scale, - color: $styles.colors.accent1, + color: $styles.colors.accent3, ); return CircularText( position: CircularTextPosition.inside, diff --git a/lib/ui/screens/editorial/widgets/_large_simple_quote.dart b/lib/ui/screens/editorial/widgets/_large_simple_quote.dart index b449ebe8..19a0d4d3 100644 --- a/lib/ui/screens/editorial/widgets/_large_simple_quote.dart +++ b/lib/ui/screens/editorial/widgets/_large_simple_quote.dart @@ -18,7 +18,7 @@ class _LargeSimpleQuote extends StatelessWidget { child: Text( '“', style: $styles.text.quote1.copyWith( - color: $styles.colors.accent1, + color: $styles.colors.accent3, fontSize: 90 * $styles.scale, height: .7, ), @@ -32,7 +32,7 @@ class _LargeSimpleQuote extends StatelessWidget { Gap($styles.insets.md), Text( '- $author', - style: $styles.text.quote2Sub.copyWith(color: $styles.colors.accent1), + style: $styles.text.quote2Sub.copyWith(color: $styles.colors.accent3), ), ], ), diff --git a/lib/ui/screens/editorial/widgets/_scrolling_content.dart b/lib/ui/screens/editorial/widgets/_scrolling_content.dart index cd3d4e05..c4e31f3d 100644 --- a/lib/ui/screens/editorial/widgets/_scrolling_content.dart +++ b/lib/ui/screens/editorial/widgets/_scrolling_content.dart @@ -43,7 +43,7 @@ class _ScrollingContent extends StatelessWidget { dropChar, overflow: TextOverflow.visible, style: $styles.text.dropCase.copyWith( - color: $styles.colors.accent1, + color: $styles.colors.accent3, height: 1, ), ), @@ -52,7 +52,7 @@ class _ScrollingContent extends StatelessWidget { style: $styles.text.body, dropCapPadding: EdgeInsets.only(right: 6), dropCapStyle: $styles.text.dropCase.copyWith( - color: $styles.colors.accent1, + color: $styles.colors.accent3, height: 1, ), )