breakouts 0.2.1 → 0.5.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "breakouts",
3
- "version": "0.2.1",
3
+ "version": "0.5.0",
4
4
  "description": "A personal SCSS/CSS layout utility framework.",
5
5
  "main": "dist/breakouts.css",
6
6
  "files": [
@@ -1,4 +1,4 @@
1
1
  // Project: Breakouts entry point
2
2
  // Description: This file is the entry point for the Breakouts module.
3
3
 
4
- @forward 'src/index';
4
+ @forward 'index';
@@ -4,9 +4,9 @@
4
4
  // The theme variables are used to customize the appearance of the Chupa Pop theme.
5
5
  // The theme variables are defined using the SCSS @use and @forward directives.
6
6
 
7
- $color-primary: #ecb838 !default;
8
- $color-secondary: #ab4073 !default;
9
- $color-accent: #196484 !default;
7
+ $primary: #ecb838 !default;
8
+ $secondary: #ab4073 !default;
9
+ $accent: #196484 !default;
10
10
 
11
11
  @forward 'breakouts/src/theme/variables' with (
12
12
  $color-primary: $primary,
@@ -10,7 +10,8 @@ $accent: #A9A9A9 !default;
10
10
  $muted: #D3D3D3 !default;
11
11
  $background: #FFFFFF !default;
12
12
 
13
- @forward 'breakouts/src/theme/variables'with ($color-primary: $primary,
13
+ @forward 'breakouts/src/theme/variables' with (
14
+ $color-primary: $primary,
14
15
  $color-primary-dark: darken($primary, 15%),
15
16
  $color-primary-light: lighten($primary, 15%),
16
17
 
@@ -28,9 +29,10 @@ $background: #FFFFFF !default;
28
29
 
29
30
  $color-background: $background,
30
31
  $color-background-dark: darken($background, 5%),
31
- $color-background-light: lighten($background, 5%));
32
+ $color-background-light: lighten($background, 5%)
33
+ );
32
34
 
33
- @use 'breakouts/src/theme/variables'as *;
35
+ @use 'breakouts/src/theme/variables' as *;
34
36
  @forward 'breakouts/src/theme/colors';
35
37
  @forward 'breakouts/src/base/reset';
36
38
  @forward 'breakouts/src/base/typography';