@simplybusiness/theme-core 7.9.0 → 7.9.2

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
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - @simplybusiness/mobius@5.31.2
8
+
9
+ ## 7.9.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 4b0d4d1: create secondary dark as an alias for secondary hover
14
+
3
15
  ## 7.9.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.css CHANGED
@@ -1109,7 +1109,7 @@ a.mobius-button:focus-visible,
1109
1109
  color:var(--color-primary);
1110
1110
  }
1111
1111
 
1112
- @media (prefers-reduced-motion: ){
1112
+ @media (prefers-reduced-motion: reduce){
1113
1113
  :root,
1114
1114
  :host,
1115
1115
  ::backdrop{
@@ -2903,7 +2903,8 @@ svg:not(:host).svg-inline--mobius-icon{
2903
2903
  --color-primary-darker:var(--color-azure-600);
2904
2904
  --color-primary-hover:var(--color-primary-darker);
2905
2905
  --color-secondary:var(--color-azure-500);
2906
- --color-secondary-hover:var(--color-azure-600);
2906
+ --color-secondary-dark:var(--color-azure-600);
2907
+ --color-secondary-hover:var(--color-secondary-dark);
2907
2908
  --color-focus:var(--color-bubblegum-500);
2908
2909
  --color-accent:var(--color-bubblegum-500);
2909
2910
  --color-accent-lighter:var(--color-bubblegum-300);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-core",
3
- "version": "7.9.0",
3
+ "version": "7.9.2",
4
4
  "main": "dist/index.css",
5
5
  "simplyBusiness": {
6
6
  "publishToPublicNpm": true
@@ -26,7 +26,7 @@
26
26
  "./fonts": "./dist/fonts.css"
27
27
  },
28
28
  "dependencies": {
29
- "@simplybusiness/mobius": "^5.30.0"
29
+ "@simplybusiness/mobius": "^5.31.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "css-loader": "^7.1.2",
package/src/variables.css CHANGED
@@ -50,7 +50,8 @@
50
50
 
51
51
  /* Secondary */
52
52
  --color-secondary: var(--color-azure-500);
53
- --color-secondary-hover: var(--color-azure-600);
53
+ --color-secondary-dark: var(--color-azure-600);
54
+ --color-secondary-hover: var(--color-secondary-dark);
54
55
 
55
56
  /* Focus */
56
57
  --color-focus: var(--color-bubblegum-500);