|
37 | 37 | } |
38 | 38 | } |
39 | 39 |
|
| 40 | +@layer utilities { |
| 41 | + .text-black2 { |
| 42 | + color: var(--color-black2); |
| 43 | + } |
| 44 | + .text-black3 { |
| 45 | + color: var(--color-black3); |
| 46 | + } |
| 47 | + .text-black4 { |
| 48 | + color: var(--color-black4); |
| 49 | + } |
| 50 | + .text-gray1 { |
| 51 | + color: var(--color-gray1); |
| 52 | + } |
| 53 | + .text-gray2 { |
| 54 | + color: var(--color-gray2); |
| 55 | + } |
| 56 | + .text-gray3 { |
| 57 | + color: var(--color-gray3); |
| 58 | + } |
| 59 | + .text-gray4 { |
| 60 | + color: var(--color-gray4); |
| 61 | + } |
| 62 | + .text-gray5 { |
| 63 | + color: var(--color-gray5); |
| 64 | + } |
| 65 | +} |
| 66 | + |
40 | 67 | @layer utilities { |
41 | 68 | .font-32b { |
42 | | - @apply text-[32px] leading-[42px] font-bold; |
| 69 | + font-size: 32px; |
| 70 | + line-height: 42px; |
| 71 | + font-weight: 700; |
43 | 72 | } |
44 | 73 | .font-32sb { |
45 | | - @apply text-[32px] leading-[42px] font-semibold; |
| 74 | + font-size: 32px; |
| 75 | + line-height: 42px; |
| 76 | + font-weight: 600; |
46 | 77 | } |
47 | 78 |
|
48 | 79 | .font-24b { |
49 | | - @apply text-[24px] leading-[32px] font-bold; |
| 80 | + font-size: 24px; |
| 81 | + line-height: 32px; |
| 82 | + font-weight: 700; |
50 | 83 | } |
51 | 84 | .font-24sb { |
52 | | - @apply text-[24px] leading-[32px] font-semibold; |
| 85 | + font-size: 24px; |
| 86 | + line-height: 32px; |
| 87 | + font-weight: 600; |
53 | 88 | } |
54 | 89 | .font-24m { |
55 | | - @apply text-[24px] leading-[32px] font-medium; |
| 90 | + font-size: 24px; |
| 91 | + line-height: 32px; |
| 92 | + font-weight: 500; |
56 | 93 | } |
57 | 94 | .font-24r { |
58 | | - @apply text-[24px] leading-[32px] font-normal; |
| 95 | + font-size: 24px; |
| 96 | + line-height: 32px; |
| 97 | + font-weight: 400; |
59 | 98 | } |
60 | 99 |
|
61 | 100 | .font-20b { |
62 | | - @apply text-[20px] leading-[32px] font-bold; |
| 101 | + font-size: 20px; |
| 102 | + line-height: 32px; |
| 103 | + font-weight: 700; |
63 | 104 | } |
64 | 105 | .font-20sb { |
65 | | - @apply text-[20px] leading-[32px] font-semibold; |
| 106 | + font-size: 20px; |
| 107 | + line-height: 32px; |
| 108 | + font-weight: 600; |
66 | 109 | } |
67 | 110 | .font-20m { |
68 | | - @apply text-[20px] leading-[32px] font-medium; |
| 111 | + font-size: 20px; |
| 112 | + line-height: 32px; |
| 113 | + font-weight: 500; |
69 | 114 | } |
70 | 115 | .font-20r { |
71 | | - @apply text-[20px] leading-[32px] font-normal; |
| 116 | + font-size: 20px; |
| 117 | + line-height: 32px; |
| 118 | + font-weight: 400; |
72 | 119 | } |
73 | 120 |
|
74 | 121 | .font-18b { |
75 | | - @apply text-[18px] leading-[26px] font-bold; |
| 122 | + font-size: 18px; |
| 123 | + line-height: 26px; |
| 124 | + font-weight: 700; |
76 | 125 | } |
77 | 126 | .font-18sb { |
78 | | - @apply text-[18px] leading-[26px] font-semibold; |
| 127 | + font-size: 18px; |
| 128 | + line-height: 26px; |
| 129 | + font-weight: 600; |
79 | 130 | } |
80 | 131 | .font-18m { |
81 | | - @apply text-[18px] leading-[26px] font-medium; |
| 132 | + font-size: 18px; |
| 133 | + line-height: 26px; |
| 134 | + font-weight: 500; |
82 | 135 | } |
83 | 136 | .font-18r { |
84 | | - @apply text-[18px] leading-[26px] font-normal; |
| 137 | + font-size: 18px; |
| 138 | + line-height: 26px; |
| 139 | + font-weight: 400; |
85 | 140 | } |
86 | 141 |
|
87 | 142 | .font-16b { |
88 | | - @apply text-[16px] leading-[26px] font-bold; |
| 143 | + font-size: 16px; |
| 144 | + line-height: 26px; |
| 145 | + font-weight: 700; |
89 | 146 | } |
90 | 147 | .font-16sb { |
91 | | - @apply text-[16px] leading-[26px] font-semibold; |
| 148 | + font-size: 16px; |
| 149 | + line-height: 26px; |
| 150 | + font-weight: 600; |
92 | 151 | } |
93 | 152 | .font-16m { |
94 | | - @apply text-[16px] leading-[26px] font-medium; |
| 153 | + font-size: 16px; |
| 154 | + line-height: 26px; |
| 155 | + font-weight: 500; |
95 | 156 | } |
96 | 157 | .font-16r { |
97 | | - @apply text-[16px] leading-[26px] font-normal; |
| 158 | + font-size: 16px; |
| 159 | + line-height: 26px; |
| 160 | + font-weight: 400; |
98 | 161 | } |
99 | 162 |
|
100 | 163 | .font-14b { |
101 | | - @apply text-[14px] leading-[24px] font-bold; |
| 164 | + font-size: 14px; |
| 165 | + line-height: 24px; |
| 166 | + font-weight: 700; |
102 | 167 | } |
103 | 168 | .font-14sb { |
104 | | - @apply text-[14px] leading-[24px] font-semibold; |
| 169 | + font-size: 14px; |
| 170 | + line-height: 24px; |
| 171 | + font-weight: 600; |
105 | 172 | } |
106 | 173 | .font-14m { |
107 | | - @apply text-[14px] leading-[24px] font-medium; |
| 174 | + font-size: 14px; |
| 175 | + line-height: 24px; |
| 176 | + font-weight: 500; |
108 | 177 | } |
109 | 178 | .font-14r { |
110 | | - @apply text-[14px] leading-[24px] font-normal; |
| 179 | + font-size: 14px; |
| 180 | + line-height: 24px; |
| 181 | + font-weight: 400; |
111 | 182 | } |
112 | 183 |
|
113 | 184 | .font-13sb { |
114 | | - @apply text-[13px] leading-[22px] font-semibold; |
| 185 | + font-size: 13px; |
| 186 | + line-height: 22px; |
| 187 | + font-weight: 600; |
115 | 188 | } |
116 | 189 | .font-13m { |
117 | | - @apply text-[13px] leading-[22px] font-medium; |
| 190 | + font-size: 13px; |
| 191 | + line-height: 22px; |
| 192 | + font-weight: 500; |
118 | 193 | } |
119 | 194 |
|
120 | 195 | .font-12sb { |
121 | | - @apply text-[12px] leading-[20px] font-semibold; |
| 196 | + font-size: 12px; |
| 197 | + line-height: 20px; |
| 198 | + font-weight: 600; |
122 | 199 | } |
123 | 200 | .font-12m { |
124 | | - @apply text-[12px] leading-[18px] font-medium; |
| 201 | + font-size: 12px; |
| 202 | + line-height: 18px; |
| 203 | + font-weight: 500; |
125 | 204 | } |
126 | 205 | .font-12r { |
127 | | - @apply text-[12px] leading-[18px] font-normal; |
| 206 | + font-size: 12px; |
| 207 | + line-height: 18px; |
| 208 | + font-weight: 400; |
128 | 209 | } |
129 | 210 | } |
130 | 211 |
|
|
0 commit comments