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
package/src/breakouts.scss
CHANGED
|
@@ -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
|
-
$
|
|
8
|
-
$
|
|
9
|
-
$
|
|
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,
|
package/src/theme/_medical.scss
CHANGED
|
@@ -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 (
|
|
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';
|