@semi-bot/semi-theme-yas1 1.0.4 → 1.0.5

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@semi-bot/semi-theme-yas1",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Semi theme generated by dsm. https://semi.design/dsm",
5
5
  "keywords": [
6
6
  "semi-theme",
package/raw.json CHANGED
@@ -639,7 +639,6 @@
639
639
  },
640
640
  "spacing": {
641
641
  "$spacing-base": "16px",
642
- "$spacing-name": "80px",
643
642
  "$spacing-none": "0",
644
643
  "$spacing-loose": "24px",
645
644
  "$spacing-tight": "8px",
@@ -648,7 +647,8 @@
648
647
  "$spacing-extra-loose": "32px",
649
648
  "$spacing-extra-tight": "4px",
650
649
  "$spacing-super-loose": "40px",
651
- "$spacing-super-tight": "2px"
650
+ "$spacing-super-tight": "2px",
651
+ "$spacing---spacing-base-llo": "48px"
652
652
  },
653
653
  "animation": {
654
654
  "delay": {
@@ -682,46 +682,54 @@
682
682
  "typography": {
683
683
  "Header": {
684
684
  "header-1": {
685
- "fontSize": "64px",
685
+ "fontSize": "72px",
686
686
  "fontFamily": " Pretendard, Noto Sans Korean",
687
- "lineHeight": "80px"
687
+ "lineHeight": "96px",
688
+ "letterSpacing": "0.05em"
688
689
  },
689
690
  "header-2": {
690
- "fontSize": "48px",
691
- "fontFamily": "'Inter', Pretendard, Noto Sans Korean",
692
- "lineHeight": "64px"
691
+ "fontSize": "64px",
692
+ "fontFamily": " Pretendard, Noto Sans Korean",
693
+ "lineHeight": "88px",
694
+ "letterSpacing": "0.05em"
693
695
  },
694
696
  "header-3": {
695
- "fontSize": "36px",
696
- "fontFamily": "'Inter', Pretendard, Noto Sans Korean",
697
- "lineHeight": "54px"
697
+ "fontSize": "48px",
698
+ "fontFamily": " Pretendard, Noto Sans Korean",
699
+ "lineHeight": "54px",
700
+ "letterSpacing": "0.05em"
698
701
  },
699
702
  "header-4": {
700
- "fontSize": "30px",
701
- "fontFamily": "'Inter', Pretendard, Noto Sans Korean",
702
- "lineHeight": "45px"
703
+ "fontSize": "36px",
704
+ "fontFamily": " Pretendard, Noto Sans Korean",
705
+ "lineHeight": "48px",
706
+ "letterSpacing": "0.05em"
703
707
  },
704
708
  "header-5": {
705
- "fontSize": "24px",
706
- "fontFamily": "'Inter', Pretendard, Noto Sans Korean",
707
- "lineHeight": "36px"
709
+ "fontSize": "30px",
710
+ "fontFamily": " Pretendard, Noto Sans Korean",
711
+ "lineHeight": "48px",
712
+ "letterSpacing": "0.05em"
708
713
  },
709
714
  "header-6": {
710
- "fontSize": "16px",
711
- "fontFamily": "'Inter', Pretendard, Noto Sans Korean",
712
- "lineHeight": "24px"
715
+ "fontSize": "24px",
716
+ "fontFamily": " Pretendard, Noto Sans Korean",
717
+ "lineHeight": "36px",
718
+ "letterSpacing": "0.05em"
713
719
  }
714
720
  },
715
721
  "Paragraph": {
716
722
  "small": {
717
723
  "fontSize": "14px",
718
- "fontFamily": "'Inter', Pretendard, Noto Sans Korean",
719
- "lineHeight": "16px"
724
+ "fontFamily": " Pretendard, Noto Sans Korean",
725
+ "lineHeight": "16px",
726
+ "letterSpacing": "0.05em"
720
727
  },
721
728
  "regular": {
722
- "fontSize": "15px",
723
- "fontFamily": "'Inter', Pretendard, Noto Sans Korean",
724
- "lineHeight": "18px"
729
+ "fontSize": "16px",
730
+ "fontFamily": " Pretendard, Noto Sans Korean",
731
+ "lineHeight": "20px",
732
+ "letterSpacing": "0.05em"
725
733
  }
726
734
  }
727
735
  },
package/scss/_font.scss CHANGED
@@ -1,56 +1,64 @@
1
1
  @mixin font-size-header-1 {
2
- font-size: 64px;
2
+ font-size: 72px;
3
3
  font-family: Pretendard, Noto Sans Korean;
4
- line-height: 80px;
4
+ line-height: 96px;
5
+ letter-spacing: 0.05em;
5
6
 
6
7
 
7
8
  }
8
9
  @mixin font-size-header-2 {
9
- font-size: 48px;
10
- font-family: 'Inter', Pretendard, Noto Sans Korean;
11
- line-height: 64px;
10
+ font-size: 64px;
11
+ font-family: Pretendard, Noto Sans Korean;
12
+ line-height: 88px;
13
+ letter-spacing: 0.05em;
12
14
 
13
15
 
14
16
  }
15
17
  @mixin font-size-header-3 {
16
- font-size: 36px;
17
- font-family: 'Inter', Pretendard, Noto Sans Korean;
18
+ font-size: 48px;
19
+ font-family: Pretendard, Noto Sans Korean;
18
20
  line-height: 54px;
21
+ letter-spacing: 0.05em;
19
22
 
20
23
 
21
24
  }
22
25
  @mixin font-size-header-4 {
23
- font-size: 30px;
24
- font-family: 'Inter', Pretendard, Noto Sans Korean;
25
- line-height: 45px;
26
+ font-size: 36px;
27
+ font-family: Pretendard, Noto Sans Korean;
28
+ line-height: 48px;
29
+ letter-spacing: 0.05em;
26
30
 
27
31
 
28
32
  }
29
33
  @mixin font-size-header-5 {
30
- font-size: 24px;
31
- font-family: 'Inter', Pretendard, Noto Sans Korean;
32
- line-height: 36px;
34
+ font-size: 30px;
35
+ font-family: Pretendard, Noto Sans Korean;
36
+ line-height: 48px;
37
+ letter-spacing: 0.05em;
33
38
 
34
39
 
35
40
  }
36
41
  @mixin font-size-header-6 {
37
- font-size: 16px;
38
- font-family: 'Inter', Pretendard, Noto Sans Korean;
39
- line-height: 24px;
42
+ font-size: 24px;
43
+ font-family: Pretendard, Noto Sans Korean;
44
+ line-height: 36px;
45
+ letter-spacing: 0.05em;
40
46
 
41
47
 
42
48
  }
43
49
  @mixin font-size-small {
44
50
  font-size: 14px;
45
- font-family: 'Inter', Pretendard, Noto Sans Korean;
51
+ font-family: Pretendard, Noto Sans Korean;
46
52
  line-height: 16px;
53
+ letter-spacing: 0.05em;
47
54
 
48
55
 
49
56
  }
50
57
  @mixin font-size-regular {
51
- font-size: 15px;
52
- font-family: 'Inter', Pretendard, Noto Sans Korean;
53
- line-height: 18px;
58
+ font-size: 16px;
59
+ font-family: Pretendard, Noto Sans Korean;
60
+ line-height: 20px;
61
+ letter-spacing: 0.05em;
54
62
 
55
63
 
56
64
  }
@@ -26,7 +26,7 @@ $spacing-base-loose: 20px; // 间距 - 默认(偏宽松)尺寸内/外边距
26
26
  $spacing-loose: 24px; // 间距 - 宽松尺寸内/外边距
27
27
  $spacing-extra-loose: 32px; // 间距 - 超宽松尺寸内/外边距
28
28
  $spacing-super-loose: 40px; // 间距 - 极宽松尺寸内/外边距
29
- $spacing-name: 80px;
29
+ $spacing---spacing-base-llo: 48px;
30
30
  // z-index
31
31
  $z-portal: 1; // 抽象插槽,适用于未经特殊定制的所有组件
32
32
  $z-affix: 10; // 固定位置的页面元素 z-index
@@ -57,14 +57,14 @@ $z-resizable_handler: 2000; // 伸缩框组件中handler的z-index
57
57
 
58
58
  $font-family-regular: Pretendard, Noto Sans Korean; // semi 预置字体回退
59
59
  $font-size-small: 14px; // 小文本字号
60
- $font-size-regular: 15px; // 常规文本字号
60
+ $font-size-regular: 16px; // 常规文本字号
61
61
 
62
- $font-size-header-6: 16px; // 六级标题字号
63
- $font-size-header-5: 24px; // 五级标题字号
64
- $font-size-header-4: 30px; // 四级标题字号
65
- $font-size-header-3: 36px; // 三级标题字号
66
- $font-size-header-2: 48px; // 二级标题字号
67
- $font-size-header-1: 64px; // 一级标题字号
62
+ $font-size-header-6: 24px; // 六级标题字号
63
+ $font-size-header-5: 30px; // 五级标题字号
64
+ $font-size-header-4: 36px; // 四级标题字号
65
+ $font-size-header-3: 48px; // 三级标题字号
66
+ $font-size-header-2: 64px; // 二级标题字号
67
+ $font-size-header-1: 72px; // 一级标题字号
68
68
 
69
69
 
70
70
  $font-weight-light: 200; // 字重 - 轻