@acorex/styles 21.0.1-next.88 → 21.0.1-next.89

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/themes/default.css +80 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "21.0.1-next.88",
3
+ "version": "21.0.1-next.89",
4
4
  "main": "index.css",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",
@@ -3248,18 +3248,93 @@ html.ax-dark {
3248
3248
  @utility tabs-fit {
3249
3249
  width: 100%;
3250
3250
  }
3251
+
3251
3252
  @utility ax-xs {
3252
- --ax-sys-xs-size: var(--ax-sys-size-xs);
3253
+ /* Spacing */
3254
+ --spacing: 0.125rem;
3255
+
3256
+ /* Typography */
3257
+ --text-xs: 0.625rem;
3258
+ --text-sm: 0.6875rem;
3259
+ --text-base: 0.75rem;
3260
+ --text-lg: 0.875rem;
3261
+ --text-xl: 1rem;
3262
+
3263
+ /* Line Heights */
3264
+ --leading-3: 0.75rem;
3265
+ --leading-4: 0.875rem;
3266
+ --leading-5: 1rem;
3267
+ --leading-6: 1.25rem;
3253
3268
  }
3269
+
3254
3270
  @utility ax-sm {
3255
- --ax-sys-sm-size: var(--ax-sys-size-sm);
3271
+ /* Spacing */
3272
+ --spacing: 0.1875rem;
3273
+
3274
+ /* Typography */
3275
+ --text-xs: 0.6875rem;
3276
+ --text-sm: 0.75rem;
3277
+ --text-base: 0.875rem;
3278
+ --text-lg: 1rem;
3279
+ --text-xl: 1.125rem;
3280
+
3281
+ /* Line Heights */
3282
+ --leading-3: 0.875rem;
3283
+ --leading-4: 1rem;
3284
+ --leading-5: 1.125rem;
3285
+ --leading-6: 1.375rem;
3256
3286
  }
3287
+
3257
3288
  @utility ax-md {
3258
- --ax-sys-md-size: var(--ax-sys-size-md);
3289
+ /* Tailwind Default Scale */
3290
+ --spacing: 0.25rem;
3291
+
3292
+ /* Typography */
3293
+ --text-xs: 0.75rem;
3294
+ --text-sm: 0.875rem;
3295
+ --text-base: 1rem;
3296
+ --text-lg: 1.125rem;
3297
+ --text-xl: 1.25rem;
3298
+
3299
+ /* Line Heights */
3300
+ --leading-3: 0.75rem;
3301
+ --leading-4: 1rem;
3302
+ --leading-5: 1.25rem;
3303
+ --leading-6: 1.5rem;
3259
3304
  }
3305
+
3260
3306
  @utility ax-lg {
3261
- --ax-sys-lg-size: var(--ax-sys-size-lg);
3307
+ /* Spacing */
3308
+ --spacing: 0.3125rem;
3309
+
3310
+ /* Typography */
3311
+ --text-xs: 0.8125rem;
3312
+ --text-sm: 0.9375rem;
3313
+ --text-base: 1.0625rem;
3314
+ --text-lg: 1.25rem;
3315
+ --text-xl: 1.375rem;
3316
+
3317
+ /* Line Heights */
3318
+ --leading-3: 1rem;
3319
+ --leading-4: 1.125rem;
3320
+ --leading-5: 1.375rem;
3321
+ --leading-6: 1.625rem;
3262
3322
  }
3323
+
3263
3324
  @utility ax-xl {
3264
- --ax-sys-xl-size: var(--ax-sys-size-xl);
3325
+ /* Spacing */
3326
+ --spacing: 0.375rem;
3327
+
3328
+ /* Typography */
3329
+ --text-xs: 0.875rem;
3330
+ --text-sm: 1rem;
3331
+ --text-base: 1.125rem;
3332
+ --text-lg: 1.375rem;
3333
+ --text-xl: 1.5rem;
3334
+
3335
+ /* Line Heights */
3336
+ --leading-3: 1.125rem;
3337
+ --leading-4: 1.25rem;
3338
+ --leading-5: 1.5rem;
3339
+ --leading-6: 1.75rem;
3265
3340
  }