@symbo.ls/scratch 2.34.25 → 2.34.27

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/dist/cjs/index.js CHANGED
@@ -6009,6 +6009,9 @@ var applyReset = (reset = {}) => {
6009
6009
  ...templates,
6010
6010
  ...body
6011
6011
  },
6012
+ a: {
6013
+ color: "currentColor"
6014
+ },
6012
6015
  // form elements
6013
6016
  fieldset: {
6014
6017
  border: 0,
package/dist/cjs/set.js CHANGED
@@ -5472,6 +5472,9 @@ var applyReset = (reset = {}) => {
5472
5472
  ...templates,
5473
5473
  ...body
5474
5474
  },
5475
+ a: {
5476
+ color: "currentColor"
5477
+ },
5475
5478
  // form elements
5476
5479
  fieldset: {
5477
5480
  border: 0,
@@ -5671,6 +5671,9 @@ var applyReset = (reset = {}) => {
5671
5671
  ...templates,
5672
5672
  ...body
5673
5673
  },
5674
+ a: {
5675
+ color: "currentColor"
5676
+ },
5674
5677
  // form elements
5675
5678
  fieldset: {
5676
5679
  border: 0,
@@ -4443,6 +4443,9 @@ var applyReset = (reset = {}) => {
4443
4443
  ...templates,
4444
4444
  ...body
4445
4445
  },
4446
+ a: {
4447
+ color: "currentColor"
4448
+ },
4446
4449
  // form elements
4447
4450
  fieldset: {
4448
4451
  border: 0,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@symbo.ls/scratch",
3
3
  "description": "Φ / CSS framework and methodology.",
4
4
  "author": "symbo.ls",
5
- "version": "2.34.25",
5
+ "version": "2.34.27",
6
6
  "files": [
7
7
  "src",
8
8
  "dist"
@@ -25,9 +25,9 @@
25
25
  "prepublish": "rimraf -I dist && npm run build && npm run copy:package:cjs"
26
26
  },
27
27
  "dependencies": {
28
- "@domql/utils": "^2.34.25",
29
- "@symbo.ls/utils": "^2.34.25",
28
+ "@domql/utils": "^2.34.27",
29
+ "@symbo.ls/utils": "^2.34.27",
30
30
  "color-contrast-checker": "^1.5.0"
31
31
  },
32
- "gitHead": "d5d0fa6c595ec8b35ddb5520084a06b7689ecf42"
32
+ "gitHead": "1994ef5ac77cba0564a416c60e9d0a984543d9af"
33
33
  }
@@ -15,7 +15,9 @@ export const applyReset = (reset = {}) => {
15
15
  const configTemplates = TYPOGRAPHY.templates
16
16
 
17
17
  configReset.body = {
18
- ...(CONFIG.useDocumentTheme ? getMediaTheme('document', `@${CONFIG.globalTheme}`) : {}),
18
+ ...(CONFIG.useDocumentTheme
19
+ ? getMediaTheme('document', `@${CONFIG.globalTheme}`)
20
+ : {}),
19
21
  ...configTemplates.body
20
22
  }
21
23
  configReset.h1 = configTemplates.h1
@@ -27,7 +29,9 @@ export const applyReset = (reset = {}) => {
27
29
  }
28
30
 
29
31
  const { body, ...templates } = TYPOGRAPHY.templates
30
- const globalTheme = (CONFIG.useDocumentTheme ? getMediaTheme('document', `@${CONFIG.globalTheme}`) : {})
32
+ const globalTheme = CONFIG.useDocumentTheme
33
+ ? getMediaTheme('document', `@${CONFIG.globalTheme}`)
34
+ : {}
31
35
  if (RESET.html) overwriteDeep(RESET.html, globalTheme)
32
36
 
33
37
  return deepMerge(merge(RESET, reset), {
@@ -56,12 +60,17 @@ export const applyReset = (reset = {}) => {
56
60
  margin: 0,
57
61
  fontFamily: DOCUMENT.fontFamily,
58
62
 
59
- fontSize: TYPOGRAPHY.base / TYPOGRAPHY.browserDefault + CONFIG.UNIT.default,
63
+ fontSize:
64
+ TYPOGRAPHY.base / TYPOGRAPHY.browserDefault + CONFIG.UNIT.default,
60
65
 
61
66
  ...templates,
62
67
  ...body
63
68
  },
64
69
 
70
+ a: {
71
+ color: 'currentColor'
72
+ },
73
+
65
74
  // form elements
66
75
  fieldset: {
67
76
  border: 0,