@semi-bot/semi-theme-laiye 1.0.5 → 1.0.7

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/scss/global.scss CHANGED
@@ -20,7 +20,7 @@ body, body[theme-mode="dark"] .semi-always-light, :host, :host .semi-always-ligh
20
20
  --semi-color-data-7: rgba(139, 215, 210, 1);
21
21
  --semi-color-data-8: rgba(131, 176, 35, 1);
22
22
  --semi-color-data-9: rgba(233, 165, 229, 1);
23
- --semi-color-fill-0: rgba(var(--semi-grey-8),0.05);
23
+ --semi-color-fill-0: rgba(var(--semi-grey-0),0.05);
24
24
  --semi-color-fill-1: rgba(var(--semi-grey-8),0.09);
25
25
  --semi-color-fill-2: rgba(var(--semi-grey-8),0.13);
26
26
  --semi-color-text-0: rgba(var(--semi-grey-9),1);
@@ -104,8 +104,8 @@ font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC
104
104
  --semi-shadow-elevated: 0px 0px 1px 0px rgba(0,0,0,0.30), 0px 4px 14px 0px rgba(0,0,0,0.10);
105
105
  --semi-shadow-0: none;
106
106
  --semi-shadow-1: none;
107
- --semi-shadow-2: 0px 2px 4px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.16);
108
- --semi-shadow-knob: 0px 4px 6px 0px rgba(0,0,0,0.10), 0px 0px 1px 0px rgba(0,0,0,0.30);
107
+ --semi-shadow-2: 0px 2px 4px 0px var(--semi-color-fill-2),0px 0px 1px 0px var(--semi-color-fill-2);
108
+ --semi-shadow-knob: 0px 4px 6px 0px var(--semi-color-fill-0),0px 0px 1px 0px var(--semi-color-fill-2);
109
109
  --semi-border-radius-full: 9999px;
110
110
  --semi-border-radius-large: 16px;
111
111
  --semi-border-radius-small: 4px;
@@ -219,8 +219,8 @@ font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC
219
219
  --semi-shadow-elevated: 0px 0px 1px 0px rgba(0,0,0,0.30), 0px 4px 14px 0px rgba(0,0,0,0.10);
220
220
  --semi-shadow-0: none;
221
221
  --semi-shadow-1: none;
222
- --semi-shadow-2: 0px 2px 4px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.16);
223
- --semi-shadow-knob: 0px 4px 6px 0px rgba(0,0,0,0.10), 0px 0px 1px 0px rgba(0,0,0,0.30);
222
+ --semi-shadow-2: 0px 2px 4px 0px var(--semi-color-fill-2),0px 0px 1px 0px var(--semi-color-fill-2);
223
+ --semi-shadow-knob: 0px 4px 6px 0px var(--semi-color-fill-0),0px 0px 1px 0px var(--semi-color-fill-2);
224
224
  --semi-border-radius-full: 9999px;
225
225
  --semi-border-radius-large: 16px;
226
226
  --semi-border-radius-small: 4px;
package/scss/local.scss CHANGED
@@ -41,5 +41,6 @@ $radius-cascader: 8px;
41
41
  $radius-tagInput: 8px;
42
42
  $radius-datepicker_range_input: 8px;
43
43
  $radius-datepicker_range_input_inputWrapper: 8px;
44
+ $radius-pagination_item: 8px;
44
45
  $radius-timePicker_input: 8px;
45
46
  $radius-treeSelect: 8px;
package/scss/mixin.scss CHANGED
@@ -5,10 +5,10 @@
5
5
  box-shadow: none;
6
6
  };
7
7
  @mixin shadow-2 {
8
- box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.16);
8
+ box-shadow: 0px 2px 4px 0px var(--semi-color-fill-2),0px 0px 1px 0px var(--semi-color-fill-2);
9
9
  };
10
10
  @mixin shadow-knob {
11
- box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.10), 0px 0px 1px 0px rgba(0,0,0,0.30);
11
+ box-shadow: 0px 4px 6px 0px var(--semi-color-fill-0),0px 0px 1px 0px var(--semi-color-fill-2);
12
12
  };
13
13
  @mixin shadow-elevated {
14
14
  box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.30), 0px 4px 14px 0px rgba(0,0,0,0.10);