Skip to content

Commit

Permalink
change(statistics): use theme colors with css variable for easy color…
Browse files Browse the repository at this point in the history
… customization
  • Loading branch information
ichim-david committed Oct 5, 2022
1 parent 154b7c3 commit fb72a01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions theme/themes/eea/views/statistic.variables
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
@mobileStatisticWidth: 100%;
@tabletStatisticWidth: inherit;

@secondaryValueColor: @secondaryColor;
@primaryLabelColor: @primaryColor;
@secondaryValueColor: @secondaryColorCSSVar;
@primaryLabelColor: @primaryColorCSSVar;

@verticalMargin: 1em;
@margin: @verticalMargin 0em;
Expand All @@ -36,7 +36,7 @@
@valueFont: @pageFont;
@valueFontWeight: @normal;
@valueLineHeight: 1.5em;
@valueColor: @secondaryColor;
@valueColor: @secondaryColorCSSVar;
@valueTextTransform: none;

/* Label */
Expand All @@ -45,7 +45,7 @@
@bottomLabelDistance: 0rem;
@labelFont: @headerFont;
@labelFontWeight: @bold;
@labelColor: @primaryColor;
@labelColor: @primaryColorCSSVar;
@labelLineHeight: @relativeLarge;
@labelTextTransform: none;

Expand Down

0 comments on commit fb72a01

Please sign in to comment.