@nuvoui/core 1.3.5 → 1.4.0

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 (64) hide show
  1. package/LICENSE +21 -0
  2. package/dist/nuvoui.css +322 -258
  3. package/dist/nuvoui.css.map +1 -1
  4. package/dist/nuvoui.min.css +23 -1
  5. package/dist/nuvoui.min.css.map +1 -1
  6. package/package.json +1 -1
  7. package/src/styles/base/_base.scss +148 -147
  8. package/src/styles/base/_reset.scss +41 -49
  9. package/src/styles/build.scss +25 -1
  10. package/src/styles/components/_tooltips.scss +271 -0
  11. package/src/styles/config/_borders.scss +15 -0
  12. package/src/styles/config/_breakpoints.scss +11 -0
  13. package/src/styles/config/_colors.scss +192 -0
  14. package/src/styles/config/_constants.scss +1 -0
  15. package/src/styles/config/_container-queries.scss +1 -0
  16. package/src/styles/config/_feature-flags.scss +33 -0
  17. package/src/styles/config/_layouts.scss +13 -0
  18. package/src/styles/config/_shadows.scss +9 -0
  19. package/src/styles/config/_spacing.scss +41 -0
  20. package/src/styles/config/_theme-validation.scss +59 -0
  21. package/src/styles/config/_typography.scss +45 -0
  22. package/src/styles/functions/_breakpoints.scss +15 -0
  23. package/src/styles/functions/_colors.scss +280 -0
  24. package/src/styles/functions/_css-vars.scss +33 -0
  25. package/src/styles/functions/_feature-flags.scss +20 -0
  26. package/src/styles/functions/_math.scss +72 -0
  27. package/src/styles/functions/_strings.scss +68 -0
  28. package/src/styles/functions/_types.scss +104 -0
  29. package/src/styles/functions/_units.scss +83 -0
  30. package/src/styles/index.scss +26 -5
  31. package/src/styles/layouts/_container.scss +28 -27
  32. package/src/styles/layouts/_flex.scss +340 -337
  33. package/src/styles/layouts/_grid.scss +131 -128
  34. package/src/styles/mixins-map.json +484 -479
  35. package/src/styles/mixins-map.scss +1 -1
  36. package/src/styles/themes/_theme.scss +230 -211
  37. package/src/styles/tools/_accessibility.scss +50 -0
  38. package/src/styles/tools/_container-queries.scss +98 -0
  39. package/src/styles/tools/_feature-support.scss +46 -0
  40. package/src/styles/tools/_media-queries.scss +70 -0
  41. package/src/styles/tools/_modern-layout.scss +49 -0
  42. package/src/styles/utilities/_alignment.scss +35 -34
  43. package/src/styles/utilities/_animations.scss +312 -311
  44. package/src/styles/utilities/_backdrop-filters.scss +194 -193
  45. package/src/styles/utilities/_borders.scss +243 -237
  46. package/src/styles/utilities/_colors.scss +16 -136
  47. package/src/styles/utilities/_cursor.scss +10 -10
  48. package/src/styles/utilities/_display.scss +192 -191
  49. package/src/styles/utilities/_helpers.scss +106 -106
  50. package/src/styles/utilities/_opacity.scss +27 -25
  51. package/src/styles/utilities/_position.scss +124 -121
  52. package/src/styles/utilities/_shadows.scss +171 -169
  53. package/src/styles/utilities/_sizing.scss +197 -194
  54. package/src/styles/utilities/_spacing.scss +230 -227
  55. package/src/styles/utilities/_transforms.scss +235 -234
  56. package/src/styles/utilities/_transitions.scss +136 -135
  57. package/src/styles/utilities/_typography.scss +242 -239
  58. package/src/styles/utilities/_z-index.scss +69 -68
  59. package/src/styles/abstracts/_config.scss +0 -254
  60. package/src/styles/abstracts/_functions.scss +0 -626
  61. package/src/styles/themes/refactored_borders.ipynb +0 -37
  62. package/src/styles/utilities/_container-queries.scss +0 -95
  63. package/src/styles/utilities/_media-queries.scss +0 -189
  64. package/src/styles/utilities/_tooltips.scss +0 -258
package/dist/nuvoui.css CHANGED
@@ -1,11 +1,32 @@
1
+ /*!
2
+ * NuvoUI SCSS Framework
3
+ * MIT License
4
+ *
5
+ * Copyright (c) 2025 NuvoUI
6
+ *
7
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ * of this software and associated documentation files (the "Software"), to deal
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in all
14
+ * copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ * SOFTWARE.
23
+ */
1
24
  *,
2
25
  ::before,
3
26
  ::after,
4
27
  ::backdrop,
5
28
  ::file-selector-button {
6
29
  box-sizing: border-box;
7
- margin: 0;
8
- padding: 0;
9
30
  }
10
31
 
11
32
  body,
@@ -89,15 +110,11 @@ select:disabled {
89
110
  ul[role=list],
90
111
  ol[role=list] {
91
112
  list-style: none;
92
- margin: 0;
93
- padding: 0;
94
113
  padding-inline-start: 0;
95
114
  margin-block: 0;
96
115
  }
97
116
  ul[role=list] > li,
98
117
  ol[role=list] > li {
99
- margin: 0;
100
- padding: 0;
101
118
  margin-block: 0;
102
119
  }
103
120
 
@@ -130,7 +147,7 @@ textarea:not([rows]) {
130
147
  }
131
148
 
132
149
  html {
133
- font-size: 16px;
150
+ font-size: 1rem;
134
151
  }
135
152
 
136
153
  body {
@@ -3155,6 +3172,229 @@ code {
3155
3172
  place-items: stretch;
3156
3173
  }
3157
3174
  }
3175
+ .container-inline-size {
3176
+ container-type: inline-size;
3177
+ }
3178
+
3179
+ .container-size {
3180
+ container-type: size;
3181
+ }
3182
+
3183
+ .container-main {
3184
+ container-name: "main";
3185
+ }
3186
+
3187
+ .container-sidebar {
3188
+ container-name: "sidebar";
3189
+ }
3190
+
3191
+ .container-card {
3192
+ container-name: "card";
3193
+ }
3194
+
3195
+ .container-section {
3196
+ container-name: "section";
3197
+ }
3198
+
3199
+ :root {
3200
+ --tooltip-bg: rgba(17 17 17 / 90%);
3201
+ --tooltip-shadow-color: rgb(0 0 0 / 20%);
3202
+ --tooltip-text-color: #fff;
3203
+ --microtip-transition-duration: 0.18s;
3204
+ --microtip-transition-easing: ease-in-out;
3205
+ --microtip-transition-delay: 0s;
3206
+ --microtip-font-size: 13px;
3207
+ --microtip-font-weight: normal;
3208
+ --microtip-text-transform: none;
3209
+ --tooltip-small-width: 80px;
3210
+ --tooltip-medium-width: 150px;
3211
+ --tooltip-large-width: 260px;
3212
+ --tooltip-border-radius: 4px;
3213
+ }
3214
+
3215
+ [data-tooltip][role~=tooltip] {
3216
+ position: relative;
3217
+ }
3218
+ [data-tooltip][role~=tooltip]::before, [data-tooltip][role~=tooltip]::after {
3219
+ transform: translate3d(0, 0, 0);
3220
+ backface-visibility: hidden;
3221
+ will-change: transform;
3222
+ opacity: 0;
3223
+ pointer-events: none;
3224
+ transition: opacity var(--microtip-transition-duration) var(--microtip-transition-easing) var(--microtip-transition-delay), transform var(--microtip-transition-duration) var(--microtip-transition-easing) var(--microtip-transition-delay);
3225
+ position: absolute;
3226
+ box-sizing: border-box;
3227
+ z-index: 10;
3228
+ transform-origin: top;
3229
+ }
3230
+ [data-tooltip][role~=tooltip]::before {
3231
+ background-size: 100% auto !important;
3232
+ content: "";
3233
+ }
3234
+ [data-tooltip][role~=tooltip]::after {
3235
+ background: var(--tooltip-bg);
3236
+ box-shadow: 0 3px 7px var(--tooltip-shadow-color);
3237
+ border-radius: var(--tooltip-border-radius);
3238
+ color: var(--tooltip-text-color);
3239
+ content: attr(data-tooltip);
3240
+ font-size: var(--microtip-font-size);
3241
+ font-weight: var(--microtip-font-weight);
3242
+ text-transform: var(--microtip-text-transform);
3243
+ padding: 0.5em 1em;
3244
+ white-space: nowrap;
3245
+ box-sizing: content-box;
3246
+ }
3247
+ [data-tooltip][role~=tooltip]:hover::before, [data-tooltip][role~=tooltip]:hover::after, [data-tooltip][role~=tooltip]:focus::before, [data-tooltip][role~=tooltip]:focus::after {
3248
+ opacity: 1;
3249
+ pointer-events: auto;
3250
+ }
3251
+
3252
+ [role~=tooltip][data-microtip-position|=top]::before {
3253
+ border-left: 9px solid transparent;
3254
+ border-right: 9px solid transparent;
3255
+ border-top: 6px solid var(--tooltip-bg);
3256
+ height: 0;
3257
+ width: 0;
3258
+ margin-bottom: 6px;
3259
+ transform: translate3d(-50%, 0, 0);
3260
+ bottom: 100%;
3261
+ left: 50%;
3262
+ z-index: 999;
3263
+ }
3264
+ [role~=tooltip][data-microtip-position|=top]::after {
3265
+ margin-bottom: 11px;
3266
+ transform: translate3d(-50%, 0, 0);
3267
+ bottom: 100%;
3268
+ left: 50%;
3269
+ }
3270
+ [role~=tooltip][data-microtip-position|=top]:hover::before {
3271
+ transform: translate3d(-50%, -5px, 0);
3272
+ }
3273
+ [role~=tooltip][data-microtip-position|=top]:hover::after {
3274
+ transform: translate3d(-50%, -5px, 0);
3275
+ }
3276
+
3277
+ [role~=tooltip][data-microtip-position=top-left]::after {
3278
+ transform: translate3d(calc(-100% + 16px), 0, 0);
3279
+ bottom: 100%;
3280
+ }
3281
+ [role~=tooltip][data-microtip-position=top-left]:hover::after {
3282
+ transform: translate3d(calc(-100% + 16px), -5px, 0);
3283
+ }
3284
+
3285
+ [role~=tooltip][data-microtip-position=top-right]::after {
3286
+ transform: translate3d(calc(0% - 16px), 0, 0);
3287
+ bottom: 100%;
3288
+ }
3289
+ [role~=tooltip][data-microtip-position=top-right]:hover::after {
3290
+ transform: translate3d(calc(0% - 16px), -5px, 0);
3291
+ }
3292
+
3293
+ [role~=tooltip][data-microtip-position|=bottom]::before {
3294
+ border-left: 9px solid transparent;
3295
+ border-right: 9px solid transparent;
3296
+ border-bottom: 6px solid var(--tooltip-bg);
3297
+ height: 0;
3298
+ width: 0;
3299
+ margin-top: 5px;
3300
+ margin-bottom: 0;
3301
+ transform: translate3d(-50%, -10px, 0);
3302
+ bottom: auto;
3303
+ left: 50%;
3304
+ top: 100%;
3305
+ z-index: 999;
3306
+ }
3307
+ [role~=tooltip][data-microtip-position|=bottom]::after {
3308
+ margin-top: 11px;
3309
+ transform: translate3d(-50%, -10px, 0);
3310
+ top: 100%;
3311
+ left: 50%;
3312
+ }
3313
+ [role~=tooltip][data-microtip-position|=bottom]:hover::before {
3314
+ transform: translate3d(-50%, 0, 0);
3315
+ }
3316
+ [role~=tooltip][data-microtip-position|=bottom]:hover::after {
3317
+ transform: translate3d(-50%, 0, 0);
3318
+ }
3319
+
3320
+ [role~=tooltip][data-microtip-position=bottom-left]::after {
3321
+ transform: translate3d(calc(-100% + 16px), -10px, 0);
3322
+ top: 100%;
3323
+ }
3324
+ [role~=tooltip][data-microtip-position=bottom-left]:hover::after {
3325
+ transform: translate3d(calc(-100% + 16px), 0, 0);
3326
+ }
3327
+
3328
+ [role~=tooltip][data-microtip-position=bottom-right]::after {
3329
+ transform: translate3d(calc(0% - 16px), -10px, 0);
3330
+ top: 100%;
3331
+ }
3332
+ [role~=tooltip][data-microtip-position=bottom-right]:hover::after {
3333
+ transform: translate3d(calc(0% - 16px), 0, 0);
3334
+ }
3335
+
3336
+ [role~=tooltip][data-microtip-position=left]::before, [role~=tooltip][data-microtip-position=left]::after {
3337
+ inset: auto auto auto 100%;
3338
+ left: auto;
3339
+ right: 100%;
3340
+ top: 50%;
3341
+ transform: translate3d(10px, -50%, 0);
3342
+ }
3343
+ [role~=tooltip][data-microtip-position=left]::before {
3344
+ border-top: 9px solid transparent;
3345
+ border-bottom: 9px solid transparent;
3346
+ border-left: 6px solid var(--tooltip-bg);
3347
+ height: 0;
3348
+ width: 0;
3349
+ margin-right: 5px;
3350
+ margin-bottom: 0;
3351
+ z-index: 999;
3352
+ }
3353
+ [role~=tooltip][data-microtip-position=left]::after {
3354
+ margin-right: 11px;
3355
+ }
3356
+ [role~=tooltip][data-microtip-position=left]:hover::before, [role~=tooltip][data-microtip-position=left]:hover::after {
3357
+ transform: translate3d(0, -50%, 0);
3358
+ }
3359
+
3360
+ [role~=tooltip][data-microtip-position=right]::before, [role~=tooltip][data-microtip-position=right]::after {
3361
+ bottom: auto;
3362
+ left: 100%;
3363
+ top: 50%;
3364
+ transform: translate3d(-10px, -50%, 0);
3365
+ }
3366
+ [role~=tooltip][data-microtip-position=right]::before {
3367
+ border-top: 9px solid transparent;
3368
+ border-bottom: 9px solid transparent;
3369
+ border-right: 6px solid var(--tooltip-bg);
3370
+ height: 0;
3371
+ width: 0;
3372
+ margin-bottom: 0;
3373
+ margin-left: 5px;
3374
+ z-index: 999;
3375
+ }
3376
+ [role~=tooltip][data-microtip-position=right]::after {
3377
+ margin-left: 11px;
3378
+ }
3379
+ [role~=tooltip][data-microtip-position=right]:hover::before, [role~=tooltip][data-microtip-position=right]:hover::after {
3380
+ transform: translate3d(0, -50%, 0);
3381
+ }
3382
+
3383
+ [role~=tooltip][data-microtip-size=small]::after {
3384
+ white-space: initial;
3385
+ width: var(--tooltip-small-width);
3386
+ }
3387
+
3388
+ [role~=tooltip][data-microtip-size=medium]::after {
3389
+ white-space: initial;
3390
+ width: var(--tooltip-medium-width);
3391
+ }
3392
+
3393
+ [role~=tooltip][data-microtip-size=large]::after {
3394
+ white-space: initial;
3395
+ width: var(--tooltip-large-width);
3396
+ }
3397
+
3158
3398
  .opacity-0,
3159
3399
  .hover\:opacity-0:hover,
3160
3400
  .focus\:opacity-0:focus,
@@ -5875,43 +6115,43 @@ code {
5875
6115
  }
5876
6116
 
5877
6117
  .rounded-full {
5878
- border-radius: 50%;
6118
+ border-radius: 99in;
5879
6119
  }
5880
6120
 
5881
6121
  .rounded-t-full {
5882
- border-top-left-radius: 50%;
5883
- border-top-right-radius: 50%;
6122
+ border-top-left-radius: 99in;
6123
+ border-top-right-radius: 99in;
5884
6124
  }
5885
6125
 
5886
6126
  .rounded-r-full {
5887
- border-top-right-radius: 50%;
5888
- border-bottom-right-radius: 50%;
6127
+ border-top-right-radius: 99in;
6128
+ border-bottom-right-radius: 99in;
5889
6129
  }
5890
6130
 
5891
6131
  .rounded-b-full {
5892
- border-bottom-left-radius: 50%;
5893
- border-bottom-right-radius: 50%;
6132
+ border-bottom-left-radius: 99in;
6133
+ border-bottom-right-radius: 99in;
5894
6134
  }
5895
6135
 
5896
6136
  .rounded-l-full {
5897
- border-top-left-radius: 50%;
5898
- border-bottom-left-radius: 50%;
6137
+ border-top-left-radius: 99in;
6138
+ border-bottom-left-radius: 99in;
5899
6139
  }
5900
6140
 
5901
6141
  .rounded-tl-full {
5902
- border-top-left-radius: 50%;
6142
+ border-top-left-radius: 99in;
5903
6143
  }
5904
6144
 
5905
6145
  .rounded-tr-full {
5906
- border-top-right-radius: 50%;
6146
+ border-top-right-radius: 99in;
5907
6147
  }
5908
6148
 
5909
6149
  .rounded-br-full {
5910
- border-bottom-right-radius: 50%;
6150
+ border-bottom-right-radius: 99in;
5911
6151
  }
5912
6152
 
5913
6153
  .rounded-bl-full {
5914
- border-bottom-left-radius: 50%;
6154
+ border-bottom-left-radius: 99in;
5915
6155
  }
5916
6156
 
5917
6157
  .rounded-none {
@@ -5963,7 +6203,7 @@ code {
5963
6203
  .active\:border-solid:active,
5964
6204
  .focus\:border-solid:focus,
5965
6205
  .group:hover .group-hover\:border-solid {
5966
- border-style: solid;
6206
+ --border-style: solid;
5967
6207
  }
5968
6208
 
5969
6209
  .border-dashed,
@@ -5971,7 +6211,7 @@ code {
5971
6211
  .active\:border-dashed:active,
5972
6212
  .focus\:border-dashed:focus,
5973
6213
  .group:hover .group-hover\:border-dashed {
5974
- border-style: dashed;
6214
+ --border-style: dashed;
5975
6215
  }
5976
6216
 
5977
6217
  .border-dotted,
@@ -5979,7 +6219,7 @@ code {
5979
6219
  .active\:border-dotted:active,
5980
6220
  .focus\:border-dotted:focus,
5981
6221
  .group:hover .group-hover\:border-dotted {
5982
- border-style: dotted;
6222
+ --border-style: dotted;
5983
6223
  }
5984
6224
 
5985
6225
  .border-double,
@@ -5987,7 +6227,7 @@ code {
5987
6227
  .active\:border-double:active,
5988
6228
  .focus\:border-double:focus,
5989
6229
  .group:hover .group-hover\:border-double {
5990
- border-style: double;
6230
+ --border-style: double;
5991
6231
  }
5992
6232
 
5993
6233
  .border-none,
@@ -5995,7 +6235,7 @@ code {
5995
6235
  .active\:border-none:active,
5996
6236
  .focus\:border-none:focus,
5997
6237
  .group:hover .group-hover\:border-none {
5998
- border-style: none;
6238
+ --border-style: none;
5999
6239
  }
6000
6240
 
6001
6241
  .border-primary,
@@ -6004,6 +6244,7 @@ code {
6004
6244
  .focus\:border-primary:focus,
6005
6245
  .group:hover .group-hover\:border-primary {
6006
6246
  border-color: var(--primary);
6247
+ --border-color: var(--primary);
6007
6248
  }
6008
6249
 
6009
6250
  .border-secondary,
@@ -6012,6 +6253,7 @@ code {
6012
6253
  .focus\:border-secondary:focus,
6013
6254
  .group:hover .group-hover\:border-secondary {
6014
6255
  border-color: var(--secondary);
6256
+ --border-color: var(--secondary);
6015
6257
  }
6016
6258
 
6017
6259
  .border-success,
@@ -6020,6 +6262,7 @@ code {
6020
6262
  .focus\:border-success:focus,
6021
6263
  .group:hover .group-hover\:border-success {
6022
6264
  border-color: var(--success);
6265
+ --border-color: var(--success);
6023
6266
  }
6024
6267
 
6025
6268
  .border-danger,
@@ -6028,6 +6271,7 @@ code {
6028
6271
  .focus\:border-danger:focus,
6029
6272
  .group:hover .group-hover\:border-danger {
6030
6273
  border-color: var(--danger);
6274
+ --border-color: var(--danger);
6031
6275
  }
6032
6276
 
6033
6277
  .border-warning,
@@ -6036,6 +6280,7 @@ code {
6036
6280
  .focus\:border-warning:focus,
6037
6281
  .group:hover .group-hover\:border-warning {
6038
6282
  border-color: var(--warning);
6283
+ --border-color: var(--warning);
6039
6284
  }
6040
6285
 
6041
6286
  .border-info,
@@ -6044,6 +6289,7 @@ code {
6044
6289
  .focus\:border-info:focus,
6045
6290
  .group:hover .group-hover\:border-info {
6046
6291
  border-color: var(--info);
6292
+ --border-color: var(--info);
6047
6293
  }
6048
6294
 
6049
6295
  .border-gray,
@@ -6052,6 +6298,7 @@ code {
6052
6298
  .focus\:border-gray:focus,
6053
6299
  .group:hover .group-hover\:border-gray {
6054
6300
  border-color: var(--gray);
6301
+ --border-color: var(--gray);
6055
6302
  }
6056
6303
 
6057
6304
  .border-red,
@@ -6060,6 +6307,7 @@ code {
6060
6307
  .focus\:border-red:focus,
6061
6308
  .group:hover .group-hover\:border-red {
6062
6309
  border-color: var(--red);
6310
+ --border-color: var(--red);
6063
6311
  }
6064
6312
 
6065
6313
  .border-blue,
@@ -6068,6 +6316,7 @@ code {
6068
6316
  .focus\:border-blue:focus,
6069
6317
  .group:hover .group-hover\:border-blue {
6070
6318
  border-color: var(--blue);
6319
+ --border-color: var(--blue);
6071
6320
  }
6072
6321
 
6073
6322
  .border-green,
@@ -6076,6 +6325,7 @@ code {
6076
6325
  .focus\:border-green:focus,
6077
6326
  .group:hover .group-hover\:border-green {
6078
6327
  border-color: var(--green);
6328
+ --border-color: var(--green);
6079
6329
  }
6080
6330
 
6081
6331
  .border-yellow,
@@ -6084,6 +6334,7 @@ code {
6084
6334
  .focus\:border-yellow:focus,
6085
6335
  .group:hover .group-hover\:border-yellow {
6086
6336
  border-color: var(--yellow);
6337
+ --border-color: var(--yellow);
6087
6338
  }
6088
6339
 
6089
6340
  .border-purple,
@@ -6092,6 +6343,7 @@ code {
6092
6343
  .focus\:border-purple:focus,
6093
6344
  .group:hover .group-hover\:border-purple {
6094
6345
  border-color: var(--purple);
6346
+ --border-color: var(--purple);
6095
6347
  }
6096
6348
 
6097
6349
  .border-pink,
@@ -6100,6 +6352,7 @@ code {
6100
6352
  .focus\:border-pink:focus,
6101
6353
  .group:hover .group-hover\:border-pink {
6102
6354
  border-color: var(--pink);
6355
+ --border-color: var(--pink);
6103
6356
  }
6104
6357
 
6105
6358
  .border-black,
@@ -6108,6 +6361,7 @@ code {
6108
6361
  .focus\:border-black:focus,
6109
6362
  .group:hover .group-hover\:border-black {
6110
6363
  border-color: var(--black);
6364
+ --border-color: var(--black);
6111
6365
  }
6112
6366
 
6113
6367
  .border-white,
@@ -6116,6 +6370,7 @@ code {
6116
6370
  .focus\:border-white:focus,
6117
6371
  .group:hover .group-hover\:border-white {
6118
6372
  border-color: var(--white);
6373
+ --border-color: var(--white);
6119
6374
  }
6120
6375
 
6121
6376
  .border-transparent,
@@ -6124,6 +6379,7 @@ code {
6124
6379
  .focus\:border-transparent:focus,
6125
6380
  .group:hover .group-hover\:border-transparent {
6126
6381
  border-color: var(--transparent);
6382
+ --border-color: var(--transparent);
6127
6383
  }
6128
6384
 
6129
6385
  @media (min-width: 480px) {
@@ -6202,7 +6458,7 @@ code {
6202
6458
  border-radius: 1.25rem;
6203
6459
  }
6204
6460
  .rounded-full\@xs {
6205
- border-radius: 50%;
6461
+ border-radius: 99in;
6206
6462
  }
6207
6463
  .rounded-none\@xs {
6208
6464
  border-radius: 0px;
@@ -6293,7 +6549,7 @@ code {
6293
6549
  border-radius: 1.25rem;
6294
6550
  }
6295
6551
  .rounded-full\@sm {
6296
- border-radius: 50%;
6552
+ border-radius: 99in;
6297
6553
  }
6298
6554
  .rounded-none\@sm {
6299
6555
  border-radius: 0px;
@@ -6384,7 +6640,7 @@ code {
6384
6640
  border-radius: 1.25rem;
6385
6641
  }
6386
6642
  .rounded-full\@md {
6387
- border-radius: 50%;
6643
+ border-radius: 99in;
6388
6644
  }
6389
6645
  .rounded-none\@md {
6390
6646
  border-radius: 0px;
@@ -6475,7 +6731,7 @@ code {
6475
6731
  border-radius: 1.25rem;
6476
6732
  }
6477
6733
  .rounded-full\@lg {
6478
- border-radius: 50%;
6734
+ border-radius: 99in;
6479
6735
  }
6480
6736
  .rounded-none\@lg {
6481
6737
  border-radius: 0px;
@@ -6566,7 +6822,7 @@ code {
6566
6822
  border-radius: 1.25rem;
6567
6823
  }
6568
6824
  .rounded-full\@xl {
6569
- border-radius: 50%;
6825
+ border-radius: 99in;
6570
6826
  }
6571
6827
  .rounded-none\@xl {
6572
6828
  border-radius: 0px;
@@ -6657,7 +6913,7 @@ code {
6657
6913
  border-radius: 1.25rem;
6658
6914
  }
6659
6915
  .rounded-full\@2xl {
6660
- border-radius: 50%;
6916
+ border-radius: 99in;
6661
6917
  }
6662
6918
  .rounded-none\@2xl {
6663
6919
  border-radius: 0px;
@@ -6672,30 +6928,6 @@ code {
6672
6928
  border-radius: 9999px;
6673
6929
  }
6674
6930
  }
6675
- .container-inline-size {
6676
- container-type: inline-size;
6677
- }
6678
-
6679
- .container-size {
6680
- container-type: size;
6681
- }
6682
-
6683
- .container-main {
6684
- container-name: "main";
6685
- }
6686
-
6687
- .container-sidebar {
6688
- container-name: "sidebar";
6689
- }
6690
-
6691
- .container-card {
6692
- container-name: "card";
6693
- }
6694
-
6695
- .container-section {
6696
- container-name: "section";
6697
- }
6698
-
6699
6931
  .cursor-auto {
6700
6932
  cursor: auto;
6701
6933
  }
@@ -14933,193 +15165,6 @@ code {
14933
15165
  max-height: 16rem;
14934
15166
  }
14935
15167
  }
14936
- :root {
14937
- --tooltip-bg: rgba(17 17 17 / 90%);
14938
- --tooltip-shadow-color: rgb(0 0 0 / 20%);
14939
- --tooltip-text-color: #fff;
14940
- --microtip-transition-duration: 0.18s;
14941
- --microtip-transition-easing: ease-in-out;
14942
- --microtip-transition-delay: 0s;
14943
- --microtip-font-size: 13px;
14944
- --microtip-font-weight: normal;
14945
- --microtip-text-transform: none;
14946
- --tooltip-small-width: 80px;
14947
- --tooltip-medium-width: 150px;
14948
- --tooltip-large-width: 260px;
14949
- --tooltip-border-radius: 4px;
14950
- }
14951
-
14952
- [data-tooltip][role~=tooltip] {
14953
- position: relative;
14954
- }
14955
- [data-tooltip][role~=tooltip]::before, [data-tooltip][role~=tooltip]::after {
14956
- transform: translate3d(0, 0, 0);
14957
- backface-visibility: hidden;
14958
- will-change: transform;
14959
- opacity: 0;
14960
- pointer-events: none;
14961
- transition: all var(--microtip-transition-duration) var(--microtip-transition-easing) var(--microtip-transition-delay);
14962
- position: absolute;
14963
- box-sizing: border-box;
14964
- z-index: 10;
14965
- transform-origin: top;
14966
- }
14967
- [data-tooltip][role~=tooltip]::before {
14968
- background-size: 100% auto !important;
14969
- content: "";
14970
- }
14971
- [data-tooltip][role~=tooltip]::after {
14972
- background: var(--tooltip-bg);
14973
- box-shadow: 0 3px 7px var(--tooltip-shadow-color);
14974
- border-radius: var(--tooltip-border-radius);
14975
- color: var(--tooltip-text-color);
14976
- content: attr(data-tooltip);
14977
- font-size: var(--microtip-font-size);
14978
- font-weight: var(--microtip-font-weight);
14979
- text-transform: var(--microtip-text-transform);
14980
- padding: 0.5em 1em;
14981
- white-space: nowrap;
14982
- box-sizing: content-box;
14983
- }
14984
- [data-tooltip][role~=tooltip]:hover::before, [data-tooltip][role~=tooltip]:hover::after, [data-tooltip][role~=tooltip]:focus::before, [data-tooltip][role~=tooltip]:focus::after {
14985
- opacity: 1;
14986
- pointer-events: auto;
14987
- }
14988
-
14989
- [role~=tooltip][data-microtip-position|=top]::before {
14990
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
14991
- height: 6px;
14992
- width: 18px;
14993
- margin-bottom: 6px;
14994
- transform: translate3d(-50%, 0, 0);
14995
- bottom: 100%;
14996
- left: 50%;
14997
- }
14998
- [role~=tooltip][data-microtip-position|=top]::after {
14999
- margin-bottom: 11px;
15000
- transform: translate3d(-50%, 0, 0);
15001
- bottom: 100%;
15002
- left: 50%;
15003
- }
15004
- [role~=tooltip][data-microtip-position|=top]:hover::before {
15005
- transform: translate3d(-50%, -5px, 0);
15006
- }
15007
- [role~=tooltip][data-microtip-position|=top]:hover::after {
15008
- transform: translate3d(-50%, -5px, 0);
15009
- }
15010
-
15011
- [role~=tooltip][data-microtip-position=top-left]::after {
15012
- transform: translate3d(calc(-100% + 16px), 0, 0);
15013
- bottom: 100%;
15014
- }
15015
- [role~=tooltip][data-microtip-position=top-left]:hover::after {
15016
- transform: translate3d(calc(-100% + 16px), -5px, 0);
15017
- }
15018
-
15019
- [role~=tooltip][data-microtip-position=top-right]::after {
15020
- transform: translate3d(calc(0% - 16px), 0, 0);
15021
- bottom: 100%;
15022
- }
15023
- [role~=tooltip][data-microtip-position=top-right]:hover::after {
15024
- transform: translate3d(calc(0% - 16px), -5px, 0);
15025
- }
15026
-
15027
- [role~=tooltip][data-microtip-position|=bottom]::before {
15028
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
15029
- height: 6px;
15030
- width: 18px;
15031
- margin-top: 5px;
15032
- margin-bottom: 0;
15033
- transform: translate3d(-50%, -10px, 0);
15034
- bottom: auto;
15035
- left: 50%;
15036
- top: 100%;
15037
- }
15038
- [role~=tooltip][data-microtip-position|=bottom]::after {
15039
- margin-top: 11px;
15040
- transform: translate3d(-50%, -10px, 0);
15041
- top: 100%;
15042
- left: 50%;
15043
- }
15044
- [role~=tooltip][data-microtip-position|=bottom]:hover::before {
15045
- transform: translate3d(-50%, 0, 0);
15046
- }
15047
- [role~=tooltip][data-microtip-position|=bottom]:hover::after {
15048
- transform: translate3d(-50%, 0, 0);
15049
- }
15050
-
15051
- [role~=tooltip][data-microtip-position=bottom-left]::after {
15052
- transform: translate3d(calc(-100% + 16px), -10px, 0);
15053
- top: 100%;
15054
- }
15055
- [role~=tooltip][data-microtip-position=bottom-left]:hover::after {
15056
- transform: translate3d(calc(-100% + 16px), 0, 0);
15057
- }
15058
-
15059
- [role~=tooltip][data-microtip-position=bottom-right]::after {
15060
- transform: translate3d(calc(0% - 16px), -10px, 0);
15061
- top: 100%;
15062
- }
15063
- [role~=tooltip][data-microtip-position=bottom-right]:hover::after {
15064
- transform: translate3d(calc(0% - 16px), 0, 0);
15065
- }
15066
-
15067
- [role~=tooltip][data-microtip-position=left]::before, [role~=tooltip][data-microtip-position=left]::after {
15068
- inset: auto auto auto 100%;
15069
- left: auto;
15070
- right: 100%;
15071
- top: 50%;
15072
- transform: translate3d(10px, -50%, 0);
15073
- }
15074
- [role~=tooltip][data-microtip-position=left]::before {
15075
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
15076
- height: 18px;
15077
- width: 6px;
15078
- margin-right: 5px;
15079
- margin-bottom: 0;
15080
- }
15081
- [role~=tooltip][data-microtip-position=left]::after {
15082
- margin-right: 11px;
15083
- }
15084
- [role~=tooltip][data-microtip-position=left]:hover::before, [role~=tooltip][data-microtip-position=left]:hover::after {
15085
- transform: translate3d(0, -50%, 0);
15086
- }
15087
-
15088
- [role~=tooltip][data-microtip-position=right]::before, [role~=tooltip][data-microtip-position=right]::after {
15089
- bottom: auto;
15090
- left: 100%;
15091
- top: 50%;
15092
- transform: translate3d(-10px, -50%, 0);
15093
- }
15094
- [role~=tooltip][data-microtip-position=right]::before {
15095
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
15096
- height: 18px;
15097
- width: 6px;
15098
- margin-bottom: 0;
15099
- margin-left: 5px;
15100
- }
15101
- [role~=tooltip][data-microtip-position=right]::after {
15102
- margin-left: 11px;
15103
- }
15104
- [role~=tooltip][data-microtip-position=right]:hover::before, [role~=tooltip][data-microtip-position=right]:hover::after {
15105
- transform: translate3d(0, -50%, 0);
15106
- }
15107
-
15108
- [role~=tooltip][data-microtip-size=small]::after {
15109
- white-space: initial;
15110
- width: var(--tooltip-small-width);
15111
- }
15112
-
15113
- [role~=tooltip][data-microtip-size=medium]::after {
15114
- white-space: initial;
15115
- width: var(--tooltip-medium-width);
15116
- }
15117
-
15118
- [role~=tooltip][data-microtip-size=large]::after {
15119
- white-space: initial;
15120
- width: var(--tooltip-large-width);
15121
- }
15122
-
15123
15168
  .translate-x-0,
15124
15169
  .hover\:translate-x-0:hover,
15125
15170
  .group:hover .group-hover\:translate-x-0 {
@@ -32194,9 +32239,9 @@ code {
32194
32239
  }
32195
32240
 
32196
32241
  .animate-shake {
32197
- animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32242
+ animation: anim-shake-5 0.5s ease-in-out 1;
32198
32243
  }
32199
- @keyframes anim-shake-strip-unit(5px) {
32244
+ @keyframes anim-shake-5 {
32200
32245
  0%, 100% {
32201
32246
  transform: translateX(0);
32202
32247
  }
@@ -32231,7 +32276,7 @@ code {
32231
32276
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32232
32277
  }
32233
32278
  .animate-shake\@xs {
32234
- animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32279
+ animation: anim-shake-5 0.5s ease-in-out 1;
32235
32280
  }
32236
32281
  }
32237
32282
  @media (min-width: 640px) {
@@ -32257,7 +32302,7 @@ code {
32257
32302
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32258
32303
  }
32259
32304
  .animate-shake\@sm {
32260
- animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32305
+ animation: anim-shake-5 0.5s ease-in-out 1;
32261
32306
  }
32262
32307
  }
32263
32308
  @media (min-width: 768px) {
@@ -32283,7 +32328,7 @@ code {
32283
32328
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32284
32329
  }
32285
32330
  .animate-shake\@md {
32286
- animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32331
+ animation: anim-shake-5 0.5s ease-in-out 1;
32287
32332
  }
32288
32333
  }
32289
32334
  @media (min-width: 1024px) {
@@ -32309,7 +32354,7 @@ code {
32309
32354
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32310
32355
  }
32311
32356
  .animate-shake\@lg {
32312
- animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32357
+ animation: anim-shake-5 0.5s ease-in-out 1;
32313
32358
  }
32314
32359
  }
32315
32360
  @media (min-width: 1280px) {
@@ -32335,7 +32380,7 @@ code {
32335
32380
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32336
32381
  }
32337
32382
  .animate-shake\@xl {
32338
- animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32383
+ animation: anim-shake-5 0.5s ease-in-out 1;
32339
32384
  }
32340
32385
  }
32341
32386
  @media (min-width: 1536px) {
@@ -32361,7 +32406,7 @@ code {
32361
32406
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32362
32407
  }
32363
32408
  .animate-shake\@2xl {
32364
- animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32409
+ animation: anim-shake-5 0.5s ease-in-out 1;
32365
32410
  }
32366
32411
  }
32367
32412
  .hover-ready {
@@ -34839,6 +34884,7 @@ code {
34839
34884
  --black: #000;
34840
34885
  --white: #fff;
34841
34886
  --transparent: transparent;
34887
+ --button-text-color: ;
34842
34888
  --button-bg-color: var(--primary);
34843
34889
  --button-bg-color-hover: var(--primary-600);
34844
34890
  --link-color: var(--primary);
@@ -34867,16 +34913,34 @@ code {
34867
34913
  --button-bg-color-hover: var(--primary-400);
34868
34914
  --link-color: var(--primary);
34869
34915
  --link-hover-color: var(--primary-400);
34870
- scrollbar-color: #555 var(--background);
34871
- }
34872
- [data-theme=dark]::-webkit-scrollbar-track {
34873
- background: var(--background);
34874
- }
34875
- [data-theme=dark]::-webkit-scrollbar-thumb {
34876
- background-color: #555;
34877
- border: 3px solid var(--background);
34878
34916
  }
34879
34917
 
34918
+ @media (prefers-color-scheme: dark) {
34919
+ :root:not([data-theme]),
34920
+ :not([data-theme]) {
34921
+ --bg-base: #1a1a1a;
34922
+ --inverted-bg-base: #fbfafc;
34923
+ --bg-alternate: #f1f1f1;
34924
+ --inverted-bg-alternate: #1a1a1a;
34925
+ --bg-surface: #2e2e2e;
34926
+ --inverted-bg-surface: #fff;
34927
+ --border-base: #2e2e2e;
34928
+ --inverted-border-base: #d3d5d9;
34929
+ --text-color: #f1f1f1;
34930
+ --inverted-text-color: #1a1a1a;
34931
+ --text-muted: rgba(241, 241, 241, 0.5411764706);
34932
+ --inverted-text-muted: rgba(26, 26, 26, 0.5411764706);
34933
+ --text-subtle: rgba(241, 241, 241, 0.3137254902);
34934
+ --inverted-text-subtle: rgba(26, 26, 26, 0.3137254902);
34935
+ --text-inverted: #1a1a1a;
34936
+ --inverted-text-inverted: #f1f1f1;
34937
+ --button-text-color: ;
34938
+ --button-bg-color: var(--primary);
34939
+ --button-bg-color-hover: var(--primary-400);
34940
+ --link-color: var(--primary);
34941
+ --link-hover-color: var(--primary-400);
34942
+ }
34943
+ }
34880
34944
  .text-on-primary-50 {
34881
34945
  color: #1a1a1a;
34882
34946
  }