mod-base 1.0.72-beta.2 → 1.0.72-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  - Adding dark mode support for the input component when the input is active or focused.
6
6
 
7
+ ## 1.0.71
8
+
9
+ - Hero wave dark mode support
10
+
7
11
  ## 1.0.70
8
12
 
9
13
  - Adding support for custom background color and fill on progress bars in dark mode.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.72-beta.2",
3
+ "version": "1.0.72-beta.3",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -61,6 +61,8 @@ $contact-us-blue-light: #8498E7;
61
61
  $form-input-border-color: null,
62
62
  $form-focus-border-color: $color-grey-400,
63
63
  $hero-content-box-shadow-mobile: null,
64
+ $hero-wave-accent: null,
65
+ $hero-wave-base: null,
64
66
  $interactive-text-color: $color-grey-500,
65
67
  $interactive-text-color-hover: lighten($interactive-text-color, 20%),
66
68
  $logo-filter: invert(1) hue-rotate(180deg),
@@ -120,6 +122,14 @@ $contact-us-blue-light: #8498E7;
120
122
  $theme: $base-color !global;
121
123
  }
122
124
 
125
+ @if $hero-wave-accent == null {
126
+ $hero-wave-accent: $accent-color;
127
+ }
128
+
129
+ @if $hero-wave-base == null {
130
+ $hero-wave-base: $background;
131
+ }
132
+
123
133
  @if $reviews-card-active-star-color == null {
124
134
  @if $theme != null {
125
135
  $reviews-card-active-star-color: $theme;
@@ -555,6 +565,14 @@ $contact-us-blue-light: #8498E7;
555
565
  filter: $background-img-brightness;
556
566
  }
557
567
 
568
+ .hero__wave-accent {
569
+ fill: $hero-wave-accent;
570
+ }
571
+
572
+ .hero__wave-base {
573
+ fill: $hero-wave-base;
574
+ }
575
+
558
576
  @if $color-btn != null {
559
577
  .btn--primary,
560
578
  .btn-primary,