breakouts 0.7.2 → 0.7.4
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/README.md +23 -0
- package/dist/breakouts.css +196 -227
- package/dist/breakouts.css.map +1 -1
- package/dist/breakouts.min.css +1 -1
- package/dist/breakouts.min.css.map +1 -1
- package/package.json +1 -1
- package/src/_index.scss +2 -3
- package/src/base/_color-tokens.scss +75 -0
- package/src/base/_color-utilities.scss +113 -0
- package/src/base/_colors.scss +3 -188
- package/src/base/_reset.scss +0 -1
- package/src/base/_spacing.scss +13 -4
- package/src/base/_typography-base.scss +46 -0
- package/src/base/_typography-utilities.scss +57 -0
- package/src/base/_typography.scss +3 -109
- package/src/base.scss +5 -0
- package/src/core.scss +5 -0
- package/src/reset.scss +3 -0
- package/src/theme/_chupa-pop.scss +9 -7
- package/src/theme/_medical.scss +13 -11
- package/src/theme/_tootsie-pop.scss +13 -11
- package/src/utilities.scss +6 -0
package/src/theme/_medical.scss
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
// The theme variables are used to customize the appearance of the Medical theme.
|
|
5
5
|
// The theme variables are defined using the SCSS @use and @forward directives.
|
|
6
6
|
|
|
7
|
+
@use 'sass:color';
|
|
8
|
+
|
|
7
9
|
$primary: #4682B4 !default;
|
|
8
10
|
$secondary: #9DC183 !default;
|
|
9
11
|
$accent: #A9A9A9 !default;
|
|
@@ -12,28 +14,28 @@ $background: #FFFFFF !default;
|
|
|
12
14
|
|
|
13
15
|
@forward '../base/variables' with (
|
|
14
16
|
$color-primary: $primary,
|
|
15
|
-
$color-primary-dark:
|
|
16
|
-
$color-primary-light:
|
|
17
|
+
$color-primary-dark: color.adjust($primary, $lightness: -15%),
|
|
18
|
+
$color-primary-light: color.adjust($primary, $lightness: 15%),
|
|
17
19
|
|
|
18
20
|
$color-secondary: $secondary,
|
|
19
|
-
$color-secondary-dark:
|
|
20
|
-
$color-secondary-light:
|
|
21
|
+
$color-secondary-dark: color.adjust($secondary, $lightness: -15%),
|
|
22
|
+
$color-secondary-light: color.adjust($secondary, $lightness: 15%),
|
|
21
23
|
|
|
22
24
|
$color-accent: $accent,
|
|
23
|
-
$color-accent-dark:
|
|
24
|
-
$color-accent-light:
|
|
25
|
+
$color-accent-dark: color.adjust($accent, $lightness: -15%),
|
|
26
|
+
$color-accent-light: color.adjust($accent, $lightness: 15%),
|
|
25
27
|
|
|
26
28
|
$color-muted: $muted,
|
|
27
|
-
$color-muted-dark:
|
|
28
|
-
$color-muted-light:
|
|
29
|
+
$color-muted-dark: color.adjust($muted, $lightness: -15%),
|
|
30
|
+
$color-muted-light: color.adjust($muted, $lightness: 15%),
|
|
29
31
|
|
|
30
32
|
$color-background: $background,
|
|
31
|
-
$color-background-dark:
|
|
32
|
-
$color-background-light:
|
|
33
|
+
$color-background-dark: color.adjust($background, $lightness: -5%),
|
|
34
|
+
$color-background-light: color.adjust($background, $lightness: 5%)
|
|
33
35
|
);
|
|
34
36
|
|
|
35
37
|
@use '../base/variables' as *;
|
|
36
38
|
@forward '../base/colors';
|
|
37
39
|
@forward '../base/reset';
|
|
38
40
|
@forward '../base/typography';
|
|
39
|
-
@forward '../base/layout';
|
|
41
|
+
@forward '../base/layout';
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
// The theme variables are used to customize the appearance of the Tootsie Pop theme.
|
|
5
5
|
// The theme variables are defined using the SCSS @use and @forward directives.
|
|
6
6
|
|
|
7
|
+
@use 'sass:color';
|
|
8
|
+
|
|
7
9
|
$primary: #93329E !default;
|
|
8
10
|
$secondary: #F2711C !default;
|
|
9
11
|
$accent: #E94057 !default;
|
|
@@ -12,28 +14,28 @@ $background: #4F2F4C !default;
|
|
|
12
14
|
|
|
13
15
|
@forward '../base/variables' with (
|
|
14
16
|
$color-primary: $primary,
|
|
15
|
-
$color-primary-dark:
|
|
16
|
-
$color-primary-light:
|
|
17
|
+
$color-primary-dark: color.adjust($primary, $lightness: -15%),
|
|
18
|
+
$color-primary-light: color.adjust($primary, $lightness: 15%),
|
|
17
19
|
|
|
18
20
|
$color-secondary: $secondary,
|
|
19
|
-
$color-secondary-dark:
|
|
20
|
-
$color-secondary-light:
|
|
21
|
+
$color-secondary-dark: color.adjust($secondary, $lightness: -15%),
|
|
22
|
+
$color-secondary-light: color.adjust($secondary, $lightness: 15%),
|
|
21
23
|
|
|
22
24
|
$color-accent: $accent,
|
|
23
|
-
$color-accent-dark:
|
|
24
|
-
$color-accent-light:
|
|
25
|
+
$color-accent-dark: color.adjust($accent, $lightness: -15%),
|
|
26
|
+
$color-accent-light: color.adjust($accent, $lightness: 15%),
|
|
25
27
|
|
|
26
28
|
$color-muted: $muted,
|
|
27
|
-
$color-muted-dark:
|
|
28
|
-
$color-muted-light:
|
|
29
|
+
$color-muted-dark: color.adjust($muted, $lightness: -15%),
|
|
30
|
+
$color-muted-light: color.adjust($muted, $lightness: 15%),
|
|
29
31
|
|
|
30
32
|
$color-background: $background,
|
|
31
|
-
$color-background-dark:
|
|
32
|
-
$color-background-light:
|
|
33
|
+
$color-background-dark: color.adjust($background, $lightness: -5%),
|
|
34
|
+
$color-background-light: color.adjust($background, $lightness: 5%)
|
|
33
35
|
);
|
|
34
36
|
|
|
35
37
|
@use '../base/variables' as *;
|
|
36
38
|
@forward '../base/colors';
|
|
37
39
|
@forward '../base/reset';
|
|
38
40
|
@forward '../base/typography';
|
|
39
|
-
@forward '../base/layout';
|
|
41
|
+
@forward '../base/layout';
|