@symbo.ls/default-config 2.11.265 → 2.11.269

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.265",
3
+ "version": "2.11.269",
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": "e96a45d1a191dbcd8ee2d02c969398821e1f446d"
10
+ "gitHead": "9539c62d29cc279dbe7e149aa96bb8ee019c7119"
11
11
  }
package/src/spacing.js CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  export const SPACING = {
4
4
  ratio: 1.618,
5
- subSequence: true,
6
- '@tabletS': {
7
- ratio: 1.45
8
- },
9
- '@mobileM': {
10
- ratio: 1.2
11
- }
5
+ subSequence: true
6
+ // '@tabletS': {
7
+ // ratio: 1.45
8
+ // },
9
+ // '@mobileM': {
10
+ // ratio: 1.2
11
+ // }
12
12
  }
package/src/theme.js CHANGED
@@ -133,9 +133,10 @@ const STATES = {
133
133
  },
134
134
 
135
135
  success: {
136
- background: 'transparent',
137
- color: 'green2',
138
- border: '2.8px solid #04F214'
136
+ '@dark': {
137
+ color: 'black',
138
+ background: 'green'
139
+ }
139
140
  }
140
141
  }
141
142
 
@@ -143,7 +144,7 @@ const UI = {
143
144
  field: {
144
145
  '@light': {
145
146
  color: 'white',
146
- background: 'gradient-light'
147
+ background: '--gradient-light'
147
148
  },
148
149
  '@dark': {
149
150
  color: 'white',
package/src/typography.js CHANGED
@@ -4,12 +4,5 @@ export const TYPOGRAPHY = {
4
4
  base: 16,
5
5
  ratio: 1.25,
6
6
  subSequence: true,
7
- templates: {},
8
- '@tabletS': {
9
- base: 15,
10
- ratio: 1.23
11
- }
12
- // '@mobileM': {
13
- // ratio: 1.125
14
- // }
7
+ templates: {}
15
8
  }