@symbo.ls/default-config 2.11.239 → 2.11.244

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,11 +1,11 @@
1
1
  {
2
2
  "name": "@symbo.ls/default-config",
3
- "version": "2.11.239",
3
+ "version": "2.11.244",
4
4
  "source": "src/index.js",
5
5
  "main": "src/index.js",
6
6
  "dependencies": {
7
7
  "@symbo.ls/default-icons": "latest"
8
8
  },
9
9
  "license": "MIT",
10
- "gitHead": "41a7706e6ed0e20fce89aa1a0ed4975f7aa92aac"
10
+ "gitHead": "83dcc5bed6674f0fa0dd1ae675e3a25fb2dd90d2"
11
11
  }
package/src/color.js CHANGED
@@ -21,7 +21,9 @@ export const COLOR = {
21
21
  gray3: '#1C1C1F',
22
22
  gray4: '#BDBDC1',
23
23
 
24
- title: ['--gray2', '--gray4']
24
+ title: ['--black 1', '--white 1'],
25
+ caption: ['--gray2 1', '--gray4 1'],
26
+ paragraph: ['--gray2 1', '--white 1']
25
27
  }
26
28
 
27
29
  export const GRADIENT = {
package/src/font.js CHANGED
@@ -1,6 +1,10 @@
1
1
  'use strict'
2
2
 
3
- export const FONT = {}
3
+ export const FONT = {
4
+ SourceSans: [{
5
+ url: ''
6
+ }]
7
+ }
4
8
 
5
9
  export const FONT_FAMILY = {
6
10
  system: {
package/src/typography.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  export const TYPOGRAPHY = {
4
4
  base: 16,
5
- ratio: 1.125,
5
+ ratio: 1.25,
6
6
  subSequence: true,
7
7
  templates: {}
8
8
  }