@public-ui/theme-ecl 3.0.2-rc.2 → 3.0.2-rc.3
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/README.md +20 -20
- package/dist/index.cjs +819 -696
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +819 -696
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -87,20 +87,20 @@ The token values are read from `src/ecl-ec/global.scss` and `src/ecl-eu/global.s
|
|
|
87
87
|
| `--color-black` | `#000` | Black |
|
|
88
88
|
| `--color-white` | `#fff` | White |
|
|
89
89
|
| `--font-family` | `Arial, sans-serif` | Default font |
|
|
90
|
-
| `--font-size` | `#{rem(16)}`
|
|
90
|
+
| `--font-size` | `#{to-rem(16)}` | Base font size |
|
|
91
91
|
| `--font-weight` | `400` | Regular font weight |
|
|
92
92
|
| `--font-weight-bold` | `600` | Bold font |
|
|
93
93
|
| `--line-height` | `1.5` | Line height text |
|
|
94
94
|
| `--line-height-heading` | `1.2` | Line height headings |
|
|
95
|
-
| `--spacing-4xl` | `#{rem(64)}`
|
|
96
|
-
| `--spacing-3xl` | `#{rem(48)}`
|
|
97
|
-
| `--spacing-2xl` | `#{rem(40)}`
|
|
98
|
-
| `--spacing-xl` | `#{rem(32)}`
|
|
99
|
-
| `--spacing-l` | `#{rem(24)}`
|
|
100
|
-
| `--spacing-m` | `#{rem(16)}`
|
|
101
|
-
| `--spacing-s` | `#{rem(12)}`
|
|
102
|
-
| `--spacing-xs` | `#{rem(8)}`
|
|
103
|
-
| `--spacing-2xs` | `#{rem(4)}`
|
|
95
|
+
| `--spacing-4xl` | `#{to-rem(64)}` | Largest spacing |
|
|
96
|
+
| `--spacing-3xl` | `#{to-rem(48)}` | Very large spacing |
|
|
97
|
+
| `--spacing-2xl` | `#{to-rem(40)}` | Very large spacing |
|
|
98
|
+
| `--spacing-xl` | `#{to-rem(32)}` | Large spacing |
|
|
99
|
+
| `--spacing-l` | `#{to-rem(24)}` | Large spacing |
|
|
100
|
+
| `--spacing-m` | `#{to-rem(16)}` | Standard spacing |
|
|
101
|
+
| `--spacing-s` | `#{to-rem(12)}` | Small spacing |
|
|
102
|
+
| `--spacing-xs` | `#{to-rem(8)}` | Very small spacing |
|
|
103
|
+
| `--spacing-2xs` | `#{to-rem(4)}` | Tiny spacing |
|
|
104
104
|
|
|
105
105
|
### ECL EU Theme
|
|
106
106
|
|
|
@@ -197,17 +197,17 @@ The token values are read from `src/ecl-ec/global.scss` and `src/ecl-eu/global.s
|
|
|
197
197
|
| `--color-white` | `#fff` | White |
|
|
198
198
|
| `--color-black` | `#000` | Black |
|
|
199
199
|
| `--font-family` | `Arial, sans-serif` | Default font |
|
|
200
|
-
| `--font-size` | `#{rem(16)}`
|
|
200
|
+
| `--font-size` | `#{to-rem(16)}` | Base font size |
|
|
201
201
|
| `--font-weight-regular` | `400` | Regular font weight |
|
|
202
202
|
| `--font-weight-bold` | `700` | Bold font |
|
|
203
203
|
| `--line-height-regular` | `1.5` | Line height text |
|
|
204
204
|
| `--line-height-heading` | `1.2` | Line height headings |
|
|
205
|
-
| `--spacing-4xl` | `#{rem(64)}`
|
|
206
|
-
| `--spacing-3xl` | `#{rem(48)}`
|
|
207
|
-
| `--spacing-2xl` | `#{rem(40)}`
|
|
208
|
-
| `--spacing-xl` | `#{rem(32)}`
|
|
209
|
-
| `--spacing-l` | `#{rem(24)}`
|
|
210
|
-
| `--spacing-m` | `#{rem(16)}`
|
|
211
|
-
| `--spacing-s` | `#{rem(12)}`
|
|
212
|
-
| `--spacing-xs` | `#{rem(8)}`
|
|
213
|
-
| `--spacing-2xs` | `#{rem(4)}`
|
|
205
|
+
| `--spacing-4xl` | `#{to-rem(64)}` | Largest spacing |
|
|
206
|
+
| `--spacing-3xl` | `#{to-rem(48)}` | Very large spacing |
|
|
207
|
+
| `--spacing-2xl` | `#{to-rem(40)}` | Very large spacing |
|
|
208
|
+
| `--spacing-xl` | `#{to-rem(32)}` | Large spacing |
|
|
209
|
+
| `--spacing-l` | `#{to-rem(24)}` | Large spacing |
|
|
210
|
+
| `--spacing-m` | `#{to-rem(16)}` | Standard spacing |
|
|
211
|
+
| `--spacing-s` | `#{to-rem(12)}` | Small spacing |
|
|
212
|
+
| `--spacing-xs` | `#{to-rem(8)}` | Very small spacing |
|
|
213
|
+
| `--spacing-2xs` | `#{to-rem(4)}` | Tiny spacing |
|