@symbo.ls/default-config 2.11.267 → 2.11.271

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.267",
3
+ "version": "2.11.271",
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": "8641ea0f87d8ae5c7c0266f94a38f5714cac1e34"
10
+ "gitHead": "a57eda1f271195de0c1da82ebe89541a2874e1ad"
11
11
  }
package/src/color.js CHANGED
@@ -3,7 +3,7 @@
3
3
  export const COLOR = {
4
4
  transparent: 'rgba(0, 0, 0, 0)',
5
5
  black: 'black',
6
- gray: '#141416',
6
+ gray: '#4e4e50',
7
7
  blue: '#0e80fd',
8
8
  indigo: '#50E1FF',
9
9
  green: '#59AC56',
@@ -23,7 +23,7 @@ export const COLOR = {
23
23
 
24
24
  title: ['--black 1', '--white 1'],
25
25
  caption: ['--gray 1 +16', '--gray4 1'],
26
- paragraph: ['--gray2 1', '--gray 1 +65']
26
+ paragraph: ['--gray 1', '--gray 1 +65']
27
27
  }
28
28
 
29
29
  export const GRADIENT = {
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
@@ -143,12 +143,16 @@ const STATES = {
143
143
  const UI = {
144
144
  field: {
145
145
  '@light': {
146
- color: 'white',
147
- background: 'gradient-light'
146
+ color: 'black',
147
+ background: 'gray .975 +144',
148
+ borderColor: 'gray .975 +144',
149
+ '::placeholder': { color: 'gray 1 -68' }
148
150
  },
149
151
  '@dark': {
150
152
  color: 'white',
151
- background: 'gradient-dark-active'
153
+ background: 'gray .975 -52',
154
+ borderColor: 'gray .975 -52',
155
+ '::placeholder': { color: 'gray 1 +68' }
152
156
  }
153
157
  },
154
158
 
@@ -174,13 +178,13 @@ const UI = {
174
178
  },
175
179
 
176
180
  card: {
177
- '@dark': {
178
- color: 'white',
179
- background: 'gray .92 +8'
181
+ '@light': {
182
+ background: 'gray .975 +150'
180
183
  },
181
184
 
182
- '@light': {
183
- background: 'gray .1'
185
+ '@dark': {
186
+ color: 'white',
187
+ background: 'gray .975 -56'
184
188
  },
185
189
 
186
190
  '.child': {