@incursa/ui-kit 1.0.0 → 1.2.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 (45) hide show
  1. package/AI-AGENT-INSTRUCTIONS.md +42 -28
  2. package/LLMS.txt +56 -40
  3. package/README.md +190 -73
  4. package/dist/inc-design-language.css +430 -247
  5. package/dist/inc-design-language.css.map +1 -1
  6. package/dist/inc-design-language.js +520 -0
  7. package/dist/inc-design-language.min.css +1 -1
  8. package/dist/inc-design-language.min.css.map +1 -1
  9. package/dist/web-components/README.md +92 -0
  10. package/dist/web-components/RUNTIME-NOTES.md +40 -0
  11. package/dist/web-components/base-element.js +193 -0
  12. package/dist/web-components/components/feedback.js +1074 -0
  13. package/dist/web-components/components/forms.js +979 -0
  14. package/dist/web-components/components/layout.js +408 -0
  15. package/dist/web-components/components/navigation.js +854 -0
  16. package/dist/web-components/components/overlays.js +634 -0
  17. package/dist/web-components/controllers/focus.js +101 -0
  18. package/dist/web-components/controllers/overlay.js +128 -0
  19. package/dist/web-components/controllers/selection.js +145 -0
  20. package/dist/web-components/controllers/theme.js +173 -0
  21. package/dist/web-components/index.js +886 -0
  22. package/dist/web-components/package.json +3 -0
  23. package/dist/web-components/registry.js +74 -0
  24. package/dist/web-components/shared.js +186 -0
  25. package/dist/web-components/style.css +6 -0
  26. package/package.json +16 -4
  27. package/src/inc-design-language.js +520 -0
  28. package/src/inc-design-language.scss +456 -257
  29. package/src/web-components/README.md +92 -0
  30. package/src/web-components/RUNTIME-NOTES.md +40 -0
  31. package/src/web-components/base-element.js +193 -0
  32. package/src/web-components/components/feedback.js +1074 -0
  33. package/src/web-components/components/forms.js +979 -0
  34. package/src/web-components/components/layout.js +408 -0
  35. package/src/web-components/components/navigation.js +854 -0
  36. package/src/web-components/components/overlays.js +634 -0
  37. package/src/web-components/controllers/focus.js +101 -0
  38. package/src/web-components/controllers/overlay.js +128 -0
  39. package/src/web-components/controllers/selection.js +145 -0
  40. package/src/web-components/controllers/theme.js +173 -0
  41. package/src/web-components/index.js +886 -0
  42. package/src/web-components/package.json +3 -0
  43. package/src/web-components/registry.js +74 -0
  44. package/src/web-components/shared.js +186 -0
  45. package/src/web-components/style.css +6 -0
@@ -12168,9 +12168,35 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
12168
12168
  display: none !important;
12169
12169
  }
12170
12170
  }
12171
+ :root {
12172
+ --inc-surface-primary: var(--bs-body-bg);
12173
+ --inc-surface-secondary: var(--bs-secondary-bg);
12174
+ --inc-surface-muted: var(--bs-tertiary-bg);
12175
+ --inc-surface-highlight: var(--bs-primary-bg-subtle);
12176
+ --inc-surface-strong: #2a3142;
12177
+ --inc-surface-strong-rgb: 42, 49, 66;
12178
+ --inc-border-subtle: var(--bs-border-color-translucent);
12179
+ --inc-border-default: var(--bs-border-color);
12180
+ --inc-border-strong: var(--bs-secondary-color);
12181
+ --inc-text-primary: var(--bs-body-color);
12182
+ --inc-text-secondary: var(--bs-secondary-color);
12183
+ --inc-text-muted: var(--bs-tertiary-color);
12184
+ --inc-text-inverse: #ffffff;
12185
+ --inc-text-inverse-rgb: 255, 255, 255;
12186
+ --inc-text-link: var(--bs-link-color);
12187
+ --inc-text-link-hover: var(--bs-link-hover-color);
12188
+ --inc-surface-primary-rgb: var(--bs-body-bg-rgb);
12189
+ --inc-surface-secondary-rgb: var(--bs-secondary-bg-rgb);
12190
+ --inc-surface-muted-rgb: var(--bs-tertiary-bg-rgb);
12191
+ --inc-text-primary-rgb: var(--bs-body-color-rgb);
12192
+ --inc-text-secondary-rgb: var(--bs-secondary-color-rgb);
12193
+ --inc-text-muted-rgb: var(--bs-tertiary-color-rgb);
12194
+ --inc-shadow-rgb: var(--bs-black-rgb);
12195
+ }
12196
+
12171
12197
  .inc-text {
12172
12198
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
12173
- color: #121316;
12199
+ color: var(--inc-text-primary);
12174
12200
  margin: 0;
12175
12201
  }
12176
12202
  .inc-text--large {
@@ -12224,12 +12250,12 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
12224
12250
  font-weight: 400;
12225
12251
  }
12226
12252
  .inc-text--muted, .inc-text-muted {
12227
- color: var(--bs-secondary-color) !important;
12253
+ color: var(--inc-text-muted) !important;
12228
12254
  }
12229
12255
  .inc-text--body, .inc-text-body {
12230
12256
  font-size: 0.875rem;
12231
12257
  line-height: 1.5;
12232
- color: #121316;
12258
+ color: var(--inc-text-primary);
12233
12259
  }
12234
12260
 
12235
12261
  .inc-heading {
@@ -12305,7 +12331,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
12305
12331
 
12306
12332
  .inc-data {
12307
12333
  font-family: "IBM Plex Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
12308
- color: #121316;
12334
+ color: var(--inc-text-primary);
12309
12335
  margin: 0;
12310
12336
  }
12311
12337
  .inc-data--display {
@@ -12367,7 +12393,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
12367
12393
  }
12368
12394
  .inc-form-text--help {
12369
12395
  font-size: 0.75rem;
12370
- color: var(--bs-secondary-color);
12396
+ color: var(--inc-text-muted);
12371
12397
  }
12372
12398
 
12373
12399
  .inc-u-stack-xs > * + * {
@@ -12566,16 +12592,16 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
12566
12592
  .inc-form__fieldset {
12567
12593
  margin: 0;
12568
12594
  padding: 1rem 1rem 0.875rem;
12569
- border: 1px solid #dbdcdc;
12595
+ border: 1px solid var(--inc-border-subtle);
12570
12596
  border-radius: 0.5rem;
12571
- background: linear-gradient(180deg, rgba(246, 246, 246, 0.72), #ffffff 3rem);
12597
+ background: linear-gradient(180deg, rgba(var(--inc-surface-secondary-rgb), 0.72), var(--inc-surface-primary) 3rem);
12572
12598
  }
12573
12599
  .inc-form__legend {
12574
12600
  float: none;
12575
12601
  width: auto;
12576
12602
  margin: 0;
12577
12603
  padding: 0 0.375rem;
12578
- color: #121316;
12604
+ color: var(--inc-text-primary);
12579
12605
  font-size: 0.8125rem;
12580
12606
  font-weight: 600;
12581
12607
  line-height: 1.4;
@@ -12790,6 +12816,15 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
12790
12816
  left: 0;
12791
12817
  }
12792
12818
  }
12819
+ .inc-card {
12820
+ --bs-card-bg: var(--inc-surface-primary);
12821
+ --bs-card-color: var(--inc-text-primary);
12822
+ --bs-card-title-color: var(--inc-text-primary);
12823
+ --bs-card-subtitle-color: var(--inc-text-muted);
12824
+ --bs-card-border-color: var(--inc-border-subtle);
12825
+ --bs-card-cap-bg: var(--inc-surface-secondary);
12826
+ --bs-card-cap-color: var(--inc-text-primary);
12827
+ }
12793
12828
  .inc-card__header--compact {
12794
12829
  padding: 0.75rem 1rem;
12795
12830
  }
@@ -13045,7 +13080,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13045
13080
  font-weight: 500;
13046
13081
  }
13047
13082
  .inc-header-body__subtitle {
13048
- color: var(--bs-secondary);
13083
+ color: var(--inc-text-secondary);
13049
13084
  font-size: 0.875rem;
13050
13085
  margin: 0.25rem 0 0;
13051
13086
  }
@@ -13065,7 +13100,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13065
13100
  border-top-right-radius: var(--bs-border-radius);
13066
13101
  }
13067
13102
  .inc-header-body--panel {
13068
- background-color: var(--bs-body-bg);
13103
+ background-color: var(--inc-surface-primary);
13069
13104
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
13070
13105
  border-radius: var(--bs-border-radius);
13071
13106
  }
@@ -13154,8 +13189,8 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13154
13189
  }
13155
13190
 
13156
13191
  .inc-summary-block {
13157
- background-color: #ffffff;
13158
- border: 0.0625rem solid #c4c4c5;
13192
+ background-color: var(--inc-surface-primary);
13193
+ border: 0.0625rem solid var(--inc-border-default);
13159
13194
  border-radius: 0.25rem;
13160
13195
  padding: 1.25rem;
13161
13196
  transition: box-shadow 0.2s ease-in-out;
@@ -13169,7 +13204,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13169
13204
  justify-content: space-between;
13170
13205
  margin-bottom: 0.75rem;
13171
13206
  font-size: 0.765625rem;
13172
- color: var(--bs-secondary-color);
13207
+ color: var(--inc-text-muted);
13173
13208
  font-weight: 500;
13174
13209
  text-align: left;
13175
13210
  }
@@ -13178,7 +13213,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13178
13213
  }
13179
13214
  .inc-summary-block__header-action {
13180
13215
  font-size: 0.765625rem;
13181
- color: var(--bs-secondary-color);
13216
+ color: var(--inc-text-muted);
13182
13217
  }
13183
13218
  .inc-summary-block__body--left {
13184
13219
  text-align: left;
@@ -13194,7 +13229,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13194
13229
  .inc-summary-block__value {
13195
13230
  font-size: 1.125rem;
13196
13231
  font-weight: 700;
13197
- color: #121316;
13232
+ color: var(--inc-text-primary);
13198
13233
  line-height: 1.2;
13199
13234
  margin: 0;
13200
13235
  }
@@ -13221,7 +13256,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13221
13256
  .inc-summary-block__status-count {
13222
13257
  font-size: 1rem;
13223
13258
  font-weight: 700;
13224
- color: #121316;
13259
+ color: var(--inc-text-primary);
13225
13260
  line-height: 1;
13226
13261
  margin: 0;
13227
13262
  }
@@ -13259,8 +13294,8 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13259
13294
  min-height: 100vh;
13260
13295
  display: flex;
13261
13296
  flex-direction: column;
13262
- background-color: #ffffff;
13263
- color: #121316;
13297
+ background-color: var(--inc-surface-primary);
13298
+ color: var(--inc-text-primary);
13264
13299
  }
13265
13300
  .inc-app-shell__header {
13266
13301
  position: relative;
@@ -13274,8 +13309,8 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13274
13309
  .inc-app-shell__sidebar {
13275
13310
  flex: 0 0 17rem;
13276
13311
  max-width: 17rem;
13277
- background-color: #f6f6f6;
13278
- border-right: 1px solid #dbdcdc;
13312
+ background-color: var(--inc-surface-secondary);
13313
+ border-right: 1px solid var(--inc-border-subtle);
13279
13314
  padding: 1rem;
13280
13315
  }
13281
13316
  .inc-app-shell__main {
@@ -13301,30 +13336,30 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13301
13336
  .inc-app-shell__sidebar {
13302
13337
  max-width: none;
13303
13338
  border-right: 0;
13304
- border-bottom: 1px solid #dbdcdc;
13339
+ border-bottom: 1px solid var(--inc-border-subtle);
13305
13340
  }
13306
13341
  .inc-app-shell__content {
13307
13342
  padding: 1rem;
13308
13343
  }
13309
13344
  }
13310
- .inc-page {
13345
+ .inc-page,
13346
+ .inc-breadcrumb-body {
13311
13347
  display: flex;
13312
13348
  flex-direction: column;
13313
13349
  gap: 1rem;
13314
13350
  min-width: 0;
13315
13351
  }
13316
- .inc-page__breadcrumbs {
13352
+
13353
+ .inc-page__breadcrumbs,
13354
+ .inc-breadcrumb-body__breadcrumb {
13317
13355
  margin-bottom: 0;
13318
13356
  }
13319
- .inc-page__body {
13357
+
13358
+ .inc-page__body,
13359
+ .inc-breadcrumb-body__body {
13320
13360
  min-width: 0;
13321
13361
  }
13322
13362
 
13323
- .inc-breadcrumb-body {
13324
- display: flex;
13325
- flex-direction: column;
13326
- gap: 1rem;
13327
- }
13328
13363
  .inc-breadcrumb-body__breadcrumb {
13329
13364
  margin-bottom: 0;
13330
13365
  }
@@ -13373,9 +13408,9 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13373
13408
  justify-content: space-between;
13374
13409
  gap: 1rem;
13375
13410
  padding: 0.5rem 1rem;
13376
- border-top: 1px solid #dbdcdc;
13377
- background-color: #f6f6f6;
13378
- color: #656668;
13411
+ border-top: 1px solid var(--inc-border-subtle);
13412
+ background-color: var(--inc-surface-secondary);
13413
+ color: var(--inc-text-secondary);
13379
13414
  }
13380
13415
  .inc-footer-bar__menu {
13381
13416
  display: flex;
@@ -13385,7 +13420,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13385
13420
  }
13386
13421
  .inc-footer-bar__meta {
13387
13422
  font-size: 0.75rem;
13388
- color: #949596;
13423
+ color: var(--inc-text-muted);
13389
13424
  }
13390
13425
 
13391
13426
  .inc-breadcrumb {
@@ -13503,6 +13538,38 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13503
13538
  margin-top: 0.5rem;
13504
13539
  }
13505
13540
 
13541
+ .inc-theme-toggle {
13542
+ display: inline-flex;
13543
+ flex-wrap: wrap;
13544
+ align-items: center;
13545
+ gap: 0.75rem;
13546
+ padding: 0.625rem 0.75rem;
13547
+ border: 1px solid var(--inc-border-subtle);
13548
+ border-radius: 0.25rem;
13549
+ background: var(--inc-surface-primary);
13550
+ color: var(--inc-text-primary);
13551
+ }
13552
+ .inc-theme-toggle__label {
13553
+ display: flex;
13554
+ flex-direction: column;
13555
+ gap: 0.125rem;
13556
+ min-width: 0;
13557
+ }
13558
+ .inc-theme-toggle__title {
13559
+ margin: 0;
13560
+ font-size: 0.6875rem;
13561
+ font-weight: 600;
13562
+ letter-spacing: 0.08em;
13563
+ text-transform: uppercase;
13564
+ color: var(--inc-text-muted);
13565
+ }
13566
+ .inc-theme-toggle__value {
13567
+ margin: 0;
13568
+ font-size: 0.875rem;
13569
+ font-weight: 600;
13570
+ color: var(--inc-text-primary);
13571
+ }
13572
+
13506
13573
  .inc-sidebar-menu {
13507
13574
  display: flex;
13508
13575
  flex-direction: column;
@@ -13514,7 +13581,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13514
13581
  .inc-sidebar-menu__label {
13515
13582
  display: block;
13516
13583
  margin-bottom: 0.5rem;
13517
- color: #949596;
13584
+ color: var(--inc-text-muted);
13518
13585
  font-size: 0.6875rem;
13519
13586
  font-weight: 600;
13520
13587
  letter-spacing: 0.08em;
@@ -13528,34 +13595,34 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13528
13595
  padding: 0.625rem 0.75rem;
13529
13596
  border: 1px solid transparent;
13530
13597
  border-radius: 0.25rem;
13531
- color: #656668;
13598
+ color: var(--inc-text-secondary);
13532
13599
  text-decoration: none;
13533
13600
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
13534
13601
  }
13535
13602
  .inc-sidebar-menu__item:hover, .inc-sidebar-menu__item:focus-visible {
13536
- background-color: #f1f1f1;
13537
- border-color: #dbdcdc;
13538
- color: #121316;
13603
+ background-color: var(--inc-surface-muted);
13604
+ border-color: var(--inc-border-subtle);
13605
+ color: var(--inc-text-primary);
13539
13606
  text-decoration: none;
13540
13607
  }
13541
13608
  .inc-sidebar-menu__item.active, .inc-sidebar-menu__item--active {
13542
- background-color: rgba(135, 152, 238, 0.12);
13543
- border-color: rgba(68, 89, 198, 0.2);
13544
- color: #3748a4;
13609
+ background-color: var(--inc-surface-highlight);
13610
+ border-color: rgba(var(--bs-primary-rgb), 0.2);
13611
+ color: var(--bs-primary-text-emphasis);
13545
13612
  font-weight: 600;
13546
13613
  }
13547
13614
  .inc-sidebar-menu__text {
13548
13615
  min-width: 0;
13549
13616
  }
13550
13617
  .inc-sidebar-menu__hint {
13551
- color: #949596;
13618
+ color: var(--inc-text-muted);
13552
13619
  font-size: 0.75rem;
13553
13620
  white-space: nowrap;
13554
13621
  }
13555
13622
 
13556
13623
  .inc-nav-triad {
13557
- background-color: var(--bs-light);
13558
- border-bottom: 1px solid var(--bs-border-color);
13624
+ background-color: var(--inc-surface-secondary);
13625
+ border-bottom: 1px solid var(--inc-border-default);
13559
13626
  padding: 0.75rem 1rem;
13560
13627
  min-height: 3rem;
13561
13628
  position: sticky;
@@ -13587,17 +13654,17 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13587
13654
  align-items: center;
13588
13655
  gap: 0.5rem;
13589
13656
  padding: 0.5rem 0.75rem;
13590
- border: 1px solid var(--bs-border-color);
13657
+ border: 1px solid var(--inc-border-default);
13591
13658
  border-radius: 0.25rem;
13592
- background-color: var(--bs-white);
13593
- color: var(--bs-body-color);
13659
+ background-color: var(--inc-surface-primary);
13660
+ color: var(--inc-text-primary);
13594
13661
  text-decoration: none;
13595
13662
  font-size: 0.875rem;
13596
13663
  transition: all 0.2s ease;
13597
13664
  }
13598
13665
  .inc-nav-triad__btn:hover {
13599
- background-color: var(--bs-light);
13600
- border-color: var(--bs-secondary);
13666
+ background-color: var(--inc-surface-muted);
13667
+ border-color: var(--inc-border-strong);
13601
13668
  text-decoration: none;
13602
13669
  }
13603
13670
  .inc-nav-triad__btn:focus-visible {
@@ -13607,12 +13674,12 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13607
13674
  .inc-nav-triad__btn--subtle {
13608
13675
  border-color: transparent;
13609
13676
  background-color: transparent;
13610
- color: var(--bs-secondary);
13677
+ color: var(--inc-text-secondary);
13611
13678
  }
13612
13679
  .inc-nav-triad__btn--subtle:hover {
13613
- background-color: var(--bs-light);
13614
- border-color: var(--bs-border-color);
13615
- color: var(--bs-body-color);
13680
+ background-color: var(--inc-surface-muted);
13681
+ border-color: var(--inc-border-default);
13682
+ color: var(--inc-text-primary);
13616
13683
  }
13617
13684
  .inc-nav-triad__origin {
13618
13685
  text-align: right;
@@ -13646,39 +13713,39 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13646
13713
  gap: 0.5rem;
13647
13714
  padding: 1rem;
13648
13715
  font: inherit;
13649
- color: #525355;
13716
+ color: var(--inc-text-secondary);
13650
13717
  border-top-left-radius: 0.25rem;
13651
13718
  border-top-right-radius: 0.25rem;
13652
- background-color: #f6f6f6;
13719
+ background-color: var(--inc-surface-secondary);
13653
13720
  height: 2.5rem;
13654
13721
  text-decoration: none;
13655
- border: 1px solid #dbdcdc;
13722
+ border: 1px solid var(--inc-border-subtle);
13656
13723
  cursor: pointer;
13657
13724
  appearance: none;
13658
13725
  }
13659
13726
  .inc-tabs-folder .inc-tabs-nav > li > .inc-tab .inc-tab-icon {
13660
- color: #3748a4;
13727
+ color: var(--bs-primary);
13661
13728
  }
13662
13729
  .inc-tabs-folder .inc-tabs-nav > li > .inc-tab:not(.active):hover {
13663
- color: #2b397f;
13664
- background-color: #f1f1f1;
13665
- border-color: #c4c4c5;
13730
+ color: var(--inc-text-primary);
13731
+ background-color: var(--inc-surface-muted);
13732
+ border-color: var(--inc-border-default);
13666
13733
  }
13667
13734
  .inc-tabs-folder .inc-tabs-nav > li > .inc-tab:not(.active):hover .inc-tab-icon {
13668
- color: #2b397f;
13735
+ color: var(--bs-primary);
13669
13736
  }
13670
13737
  .inc-tabs-folder .inc-tabs-nav > li > .inc-tab.active {
13671
- color: #3748a4;
13672
- background-color: #ffffff;
13738
+ color: var(--bs-primary-text-emphasis);
13739
+ background-color: var(--inc-surface-primary);
13673
13740
  font-weight: 600;
13674
- border-color: #dbdcdc;
13675
- border-bottom-color: #ffffff;
13741
+ border-color: var(--inc-border-subtle);
13742
+ border-bottom-color: var(--inc-surface-primary);
13676
13743
  position: relative;
13677
13744
  z-index: 1;
13678
13745
  }
13679
13746
  .inc-tabs-folder .inc-tab-content {
13680
- background-color: #ffffff;
13681
- border: 1px solid #dbdcdc;
13747
+ background-color: var(--inc-surface-primary);
13748
+ border: 1px solid var(--inc-border-subtle);
13682
13749
  padding: 1.5rem;
13683
13750
  border-radius: 0.25rem;
13684
13751
  border-top-left-radius: 0;
@@ -13687,7 +13754,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13687
13754
  }
13688
13755
 
13689
13756
  .inc-tabs-line {
13690
- border-bottom: 1px solid #dbdcdc;
13757
+ border-bottom: 1px solid var(--inc-border-subtle);
13691
13758
  }
13692
13759
  .inc-tabs-line .inc-tabs-nav {
13693
13760
  display: flex;
@@ -13704,7 +13771,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13704
13771
  gap: 0.5rem;
13705
13772
  padding: 1rem 0.25rem;
13706
13773
  font: inherit;
13707
- color: #656668;
13774
+ color: var(--inc-text-secondary);
13708
13775
  background: none;
13709
13776
  border: 0;
13710
13777
  text-decoration: none;
@@ -13713,22 +13780,22 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13713
13780
  appearance: none;
13714
13781
  }
13715
13782
  .inc-tabs-line .inc-tabs-nav > li > .inc-tab .inc-tab-icon {
13716
- color: #3748a4;
13783
+ color: var(--bs-primary);
13717
13784
  }
13718
13785
  .inc-tabs-line .inc-tabs-nav > li > .inc-tab:not(.active):hover {
13719
- color: #d9cc5c;
13720
- border-bottom-color: #d9cc5c;
13786
+ color: var(--bs-primary);
13787
+ border-bottom-color: var(--bs-primary);
13721
13788
  }
13722
13789
  .inc-tabs-line .inc-tabs-nav > li > .inc-tab:not(.active):hover .inc-tab-icon {
13723
- color: #d9cc5c;
13790
+ color: var(--bs-primary);
13724
13791
  }
13725
13792
  .inc-tabs-line .inc-tabs-nav > li > .inc-tab.active {
13726
- color: #121316;
13793
+ color: var(--inc-text-primary);
13727
13794
  font-weight: 600;
13728
- border-bottom-color: #d9cc5c;
13795
+ border-bottom-color: var(--bs-primary);
13729
13796
  }
13730
13797
  .inc-tabs-line .inc-tabs-nav > li > .inc-tab.active .inc-tab-icon {
13731
- color: #121316;
13798
+ color: var(--inc-text-primary);
13732
13799
  }
13733
13800
 
13734
13801
  .inc-disclosure-set {
@@ -13738,9 +13805,9 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
13738
13805
  }
13739
13806
 
13740
13807
  details.inc-disclosure {
13741
- border: 1px solid #dbdcdc;
13808
+ border: 1px solid var(--inc-border-subtle);
13742
13809
  border-radius: 0.25rem;
13743
- background-color: #ffffff;
13810
+ background-color: var(--inc-surface-primary);
13744
13811
  box-shadow: 1.5px 1.5px 3px 0 rgba(0, 0, 0, 0.12);
13745
13812
  overflow: clip;
13746
13813
  }
@@ -13754,8 +13821,8 @@ details.inc-disclosure[open] {
13754
13821
  justify-content: space-between;
13755
13822
  gap: 1rem;
13756
13823
  padding: 1rem 1.25rem;
13757
- background-color: #f6f6f6;
13758
- color: #121316;
13824
+ background-color: var(--inc-surface-secondary);
13825
+ color: var(--inc-text-primary);
13759
13826
  cursor: pointer;
13760
13827
  list-style: none;
13761
13828
  font-size: 0.9375rem;
@@ -13779,8 +13846,8 @@ details.inc-disclosure[open] {
13779
13846
  }
13780
13847
 
13781
13848
  details.inc-disclosure[open] > .inc-disclosure__summary {
13782
- border-bottom: 1px solid #dbdcdc;
13783
- background-color: rgba(238, 241, 255, 0.85);
13849
+ border-bottom: 1px solid var(--inc-border-subtle);
13850
+ background-color: var(--inc-surface-highlight);
13784
13851
  }
13785
13852
  details.inc-disclosure[open] > .inc-disclosure__summary::after {
13786
13853
  transform: rotate(225deg) translateY(-0.05rem);
@@ -13793,7 +13860,7 @@ details.inc-disclosure[open] > .inc-disclosure__summary::after {
13793
13860
  }
13794
13861
 
13795
13862
  .inc-disclosure__meta {
13796
- color: #949596;
13863
+ color: var(--inc-text-muted);
13797
13864
  font-size: 0.75rem;
13798
13865
  font-weight: 500;
13799
13866
  }
@@ -13841,10 +13908,10 @@ details.inc-native-menu.inc-native-menu--navbar > .inc-native-menu__panel {
13841
13908
  gap: 0.625rem;
13842
13909
  min-width: 0;
13843
13910
  padding: 0.5rem 0.75rem;
13844
- border: 1px solid #dbdcdc;
13911
+ border: 1px solid var(--inc-border-subtle);
13845
13912
  border-radius: 0.25rem;
13846
- background-color: #ffffff;
13847
- color: #121316;
13913
+ background-color: var(--inc-surface-primary);
13914
+ color: var(--inc-text-primary);
13848
13915
  cursor: pointer;
13849
13916
  list-style: none;
13850
13917
  box-shadow: 1.5px 1.5px 3px 0 rgba(0, 0, 0, 0.12);
@@ -13897,13 +13964,13 @@ details.inc-native-menu.inc-native-menu--navbar > .inc-native-menu__panel {
13897
13964
  .inc-native-menu__summary .inc-user-menu__detail {
13898
13965
  display: block;
13899
13966
  font-size: 0.75rem;
13900
- color: var(--bs-secondary-color);
13967
+ color: var(--inc-text-muted);
13901
13968
  line-height: 1.15;
13902
13969
  }
13903
13970
 
13904
13971
  details.inc-native-menu[open] > .inc-native-menu__summary {
13905
- border-color: #c4c4c5;
13906
- background-color: #f6f6f6;
13972
+ border-color: var(--inc-border-default);
13973
+ background-color: var(--inc-surface-secondary);
13907
13974
  }
13908
13975
  details.inc-native-menu[open] > .inc-native-menu__summary::after {
13909
13976
  transform: rotate(225deg) translateY(-0.05rem);
@@ -13915,9 +13982,9 @@ details.inc-native-menu[open] > .inc-native-menu__summary::after {
13915
13982
  right: 0;
13916
13983
  min-width: 14rem;
13917
13984
  padding: 0.375rem 0;
13918
- border: 1px solid #dbdcdc;
13985
+ border: 1px solid var(--inc-border-subtle);
13919
13986
  border-radius: 0.25rem;
13920
- background-color: #ffffff;
13987
+ background-color: var(--inc-surface-primary);
13921
13988
  box-shadow: 4px 4px 8px 0 rgba(172, 172, 172, 0.12);
13922
13989
  z-index: 1040;
13923
13990
  }
@@ -13927,7 +13994,7 @@ details.inc-native-menu.inc-native-menu--block > .inc-native-menu__summary {
13927
13994
  justify-content: flex-start;
13928
13995
  min-height: 3rem;
13929
13996
  padding: 0.625rem 0.75rem;
13930
- background: linear-gradient(180deg, #ffffff, #f6f6f6);
13997
+ background: linear-gradient(180deg, var(--inc-surface-primary), var(--inc-surface-secondary));
13931
13998
  }
13932
13999
 
13933
14000
  details.inc-native-menu.inc-native-menu--block > .inc-native-menu__panel {
@@ -13938,7 +14005,7 @@ details.inc-native-menu.inc-native-menu--block > .inc-native-menu__panel {
13938
14005
 
13939
14006
  .inc-native-menu__header {
13940
14007
  padding: 0.25rem 0.875rem 0.5rem;
13941
- color: #949596;
14008
+ color: var(--inc-text-muted);
13942
14009
  font-size: 0.75rem;
13943
14010
  font-weight: 600;
13944
14011
  }
@@ -13946,12 +14013,12 @@ details.inc-native-menu.inc-native-menu--block > .inc-native-menu__panel {
13946
14013
  .inc-native-menu__item {
13947
14014
  display: block;
13948
14015
  padding: 0.5rem 0.875rem;
13949
- color: #121316;
14016
+ color: var(--inc-text-primary);
13950
14017
  text-decoration: none;
13951
14018
  }
13952
14019
  .inc-native-menu__item:hover, .inc-native-menu__item:focus-visible {
13953
- background-color: #f6f6f6;
13954
- color: #121316;
14020
+ background-color: var(--inc-surface-secondary);
14021
+ color: var(--inc-text-primary);
13955
14022
  text-decoration: none;
13956
14023
  }
13957
14024
 
@@ -13967,13 +14034,120 @@ details.inc-native-menu.inc-native-menu--block > .inc-native-menu__panel {
13967
14034
  width: 100%;
13968
14035
  }
13969
14036
 
14037
+ .inc-theme-switcher {
14038
+ min-width: 0;
14039
+ }
14040
+
14041
+ .inc-theme-switcher__summary {
14042
+ min-width: 11rem;
14043
+ }
14044
+
14045
+ .inc-theme-switcher__meta {
14046
+ min-width: 0;
14047
+ display: flex;
14048
+ flex-direction: column;
14049
+ gap: 0.125rem;
14050
+ line-height: 1.15;
14051
+ }
14052
+
14053
+ .inc-theme-switcher__label {
14054
+ font-size: 0.6875rem;
14055
+ font-weight: 600;
14056
+ letter-spacing: 0.08em;
14057
+ text-transform: uppercase;
14058
+ color: var(--inc-text-muted);
14059
+ }
14060
+
14061
+ .inc-theme-switcher__status {
14062
+ font-size: 0.875rem;
14063
+ font-weight: 600;
14064
+ color: inherit;
14065
+ }
14066
+
14067
+ .inc-theme-switcher__panel {
14068
+ min-width: 16rem;
14069
+ }
14070
+
14071
+ .inc-theme-switcher__option {
14072
+ width: 100%;
14073
+ display: grid;
14074
+ grid-template-columns: auto minmax(0, 1fr) auto;
14075
+ align-items: center;
14076
+ gap: 0.75rem;
14077
+ padding: 0.625rem 0.875rem;
14078
+ border: 0;
14079
+ background: transparent;
14080
+ color: var(--inc-text-primary);
14081
+ text-align: left;
14082
+ cursor: pointer;
14083
+ }
14084
+ .inc-theme-switcher__option::before, .inc-theme-switcher__option::after {
14085
+ content: "";
14086
+ display: block;
14087
+ }
14088
+ .inc-theme-switcher__option::before {
14089
+ width: 0.75rem;
14090
+ height: 0.75rem;
14091
+ border: 1px solid var(--inc-border-strong);
14092
+ border-radius: 999px;
14093
+ background: var(--inc-surface-primary);
14094
+ box-shadow: inset 0 0 0 0 rgba(var(--bs-primary-rgb), 0.85);
14095
+ transition: border-color 0.18s ease, box-shadow 0.18s ease;
14096
+ }
14097
+ .inc-theme-switcher__option::after {
14098
+ width: 0.5rem;
14099
+ height: 0.5rem;
14100
+ border-radius: 999px;
14101
+ background: transparent;
14102
+ transition: background-color 0.18s ease;
14103
+ }
14104
+ .inc-theme-switcher__option:hover, .inc-theme-switcher__option:focus-visible {
14105
+ background: var(--inc-surface-secondary);
14106
+ color: var(--inc-text-primary);
14107
+ }
14108
+ .inc-theme-switcher__option.is-selected {
14109
+ background: var(--bs-primary-bg-subtle);
14110
+ color: var(--bs-primary-text-emphasis);
14111
+ }
14112
+ .inc-theme-switcher__option.is-selected::before {
14113
+ border-color: rgba(var(--bs-primary-rgb), 0.72);
14114
+ box-shadow: inset 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.92);
14115
+ }
14116
+ .inc-theme-switcher__option.is-selected::after {
14117
+ background: var(--bs-primary);
14118
+ }
14119
+
14120
+ .inc-theme-switcher__option-body {
14121
+ min-width: 0;
14122
+ display: flex;
14123
+ flex-direction: column;
14124
+ gap: 0.125rem;
14125
+ }
14126
+
14127
+ .inc-theme-switcher__option-label {
14128
+ font-size: 0.875rem;
14129
+ font-weight: 600;
14130
+ }
14131
+
14132
+ .inc-theme-switcher__option-detail {
14133
+ font-size: 0.75rem;
14134
+ color: var(--inc-text-muted);
14135
+ }
14136
+
14137
+ details.inc-theme-switcher.inc-native-menu--navbar .inc-theme-switcher__label {
14138
+ color: rgba(var(--inc-text-inverse-rgb), 0.64);
14139
+ }
14140
+ details.inc-theme-switcher.inc-native-menu--navbar .inc-theme-switcher__status {
14141
+ color: rgba(var(--inc-text-inverse-rgb), 0.9);
14142
+ }
14143
+
13970
14144
  dialog.inc-native-dialog {
13971
14145
  width: min(100% - 2rem, 42rem);
13972
14146
  max-width: 42rem;
13973
14147
  padding: 0;
13974
14148
  border: 0;
13975
14149
  background: transparent;
13976
- color: #121316;
14150
+ color: var(--inc-text-primary);
13977
14151
  }
13978
14152
  dialog.inc-native-dialog::backdrop {
13979
14153
  background: rgba(18, 19, 22, 0.48);
@@ -13993,9 +14167,9 @@ dialog.inc-native-dialog.inc-native-dialog--drawer::backdrop {
13993
14167
  }
13994
14168
 
13995
14169
  .inc-native-dialog__surface {
13996
- border: 1px solid #dbdcdc;
14170
+ border: 1px solid var(--inc-border-subtle);
13997
14171
  border-radius: 0.25rem;
13998
- background-color: #ffffff;
14172
+ background-color: var(--inc-surface-primary);
13999
14173
  box-shadow: 0 8px 32px 0 rgba(172, 172, 172, 0.16);
14000
14174
  overflow: hidden;
14001
14175
  }
@@ -14014,8 +14188,8 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__surface {
14014
14188
  justify-content: space-between;
14015
14189
  gap: 1rem;
14016
14190
  padding: 1rem 1.25rem;
14017
- border-bottom: 1px solid #dbdcdc;
14018
- background-color: #f6f6f6;
14191
+ border-bottom: 1px solid var(--inc-border-subtle);
14192
+ background-color: var(--inc-surface-secondary);
14019
14193
  }
14020
14194
 
14021
14195
  .inc-native-dialog__title {
@@ -14038,8 +14212,8 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14038
14212
  justify-content: flex-end;
14039
14213
  gap: 0.75rem;
14040
14214
  padding: 1rem 1.25rem;
14041
- border-top: 1px solid #dbdcdc;
14042
- background-color: #f6f6f6;
14215
+ border-top: 1px solid var(--inc-border-subtle);
14216
+ background-color: var(--inc-surface-secondary);
14043
14217
  }
14044
14218
 
14045
14219
  .inc-native-dialog__close {
@@ -14051,12 +14225,12 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14051
14225
  border: 0;
14052
14226
  border-radius: 0.25rem;
14053
14227
  background: transparent;
14054
- color: #656668;
14228
+ color: var(--inc-text-secondary);
14055
14229
  cursor: pointer;
14056
14230
  }
14057
14231
  .inc-native-dialog__close:hover, .inc-native-dialog__close:focus-visible {
14058
- background-color: rgba(196, 196, 197, 0.35);
14059
- color: #121316;
14232
+ background-color: var(--inc-surface-muted);
14233
+ color: var(--inc-text-primary);
14060
14234
  }
14061
14235
 
14062
14236
  .inc-live-region {
@@ -14074,11 +14248,11 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14074
14248
  align-items: center;
14075
14249
  gap: 0.625rem;
14076
14250
  padding: 0.5rem 0.75rem;
14077
- border: 1px solid #dbdcdc;
14251
+ border: 1px solid var(--inc-border-subtle);
14078
14252
  border-radius: 999px;
14079
- background: rgba(255, 255, 255, 0.96);
14080
- color: #121316;
14081
- box-shadow: 0 0.75rem 1.5rem rgba(42, 49, 66, 0.12);
14253
+ background: rgba(var(--inc-surface-primary-rgb), 0.96);
14254
+ color: var(--inc-text-primary);
14255
+ box-shadow: 0 0.75rem 1.5rem rgba(var(--inc-surface-strong-rgb), 0.12);
14082
14256
  font-size: 0.75rem;
14083
14257
  line-height: 1.2;
14084
14258
  white-space: nowrap;
@@ -14098,19 +14272,19 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14098
14272
  min-height: 1rem;
14099
14273
  }
14100
14274
  .inc-auto-refresh__label, .inc-auto-refresh__status-text {
14101
- color: var(--bs-secondary-color);
14275
+ color: var(--inc-text-muted);
14102
14276
  font-weight: 600;
14103
14277
  }
14104
14278
  .inc-auto-refresh__value {
14105
14279
  font-family: "IBM Plex Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
14106
14280
  font-variant-numeric: tabular-nums;
14107
14281
  font-weight: 600;
14108
- color: #2a3142;
14282
+ color: var(--inc-text-primary);
14109
14283
  }
14110
14284
  .inc-auto-refresh__spinner {
14111
14285
  display: inline-flex;
14112
14286
  align-items: center;
14113
- color: #4459c6;
14287
+ color: var(--bs-primary);
14114
14288
  }
14115
14289
  .inc-auto-refresh__toggle {
14116
14290
  flex: 0 0 auto;
@@ -14127,12 +14301,12 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14127
14301
  text-align: center;
14128
14302
  }
14129
14303
  .inc-auto-refresh.is-paused {
14130
- border-color: rgba(200, 138, 0, 0.24);
14131
- box-shadow: 0 0.9rem 1.75rem rgba(200, 138, 0, 0.1);
14304
+ border-color: var(--bs-warning-border-subtle);
14305
+ box-shadow: 0 0.9rem 1.75rem rgba(var(--bs-warning-rgb), 0.1);
14132
14306
  }
14133
14307
  .inc-auto-refresh.is-loading {
14134
- border-color: rgba(68, 89, 198, 0.2);
14135
- box-shadow: 0 0.9rem 1.75rem rgba(68, 89, 198, 0.14);
14308
+ border-color: var(--bs-primary-border-subtle);
14309
+ box-shadow: 0 0.9rem 1.75rem rgba(var(--bs-primary-rgb), 0.14);
14136
14310
  }
14137
14311
 
14138
14312
  .inc-progress,
@@ -14142,10 +14316,10 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14142
14316
  overflow: hidden;
14143
14317
  border: 0;
14144
14318
  border-radius: 999px;
14145
- background: #f1f1f1;
14319
+ background: var(--inc-surface-muted);
14146
14320
  vertical-align: middle;
14147
14321
  appearance: none;
14148
- --inc-track-color: #f1f1f1;
14322
+ --inc-track-color: var(--inc-surface-muted);
14149
14323
  --inc-fill-color: #4459c6;
14150
14324
  }
14151
14325
 
@@ -14214,7 +14388,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14214
14388
  }
14215
14389
  .inc-alert-container .alert:focus,
14216
14390
  .inc-alert-container .inc-alert:focus {
14217
- outline: 2px solid #4459c6;
14391
+ outline: 2px solid var(--bs-primary);
14218
14392
  outline-offset: 2px;
14219
14393
  }
14220
14394
  .inc-alert-container .alert.fade.show,
@@ -14233,33 +14407,33 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14233
14407
  }
14234
14408
  .inc-alert-container .alert-success,
14235
14409
  .inc-alert-container .inc-alert--success {
14236
- background-color: rgba(230, 251, 239, 0.9);
14237
- border-color: #96efbd;
14238
- color: #009743;
14410
+ background-color: var(--bs-success-bg-subtle);
14411
+ border-color: var(--bs-success-border-subtle);
14412
+ color: var(--bs-success-text-emphasis);
14239
14413
  }
14240
14414
  .inc-alert-container .alert-warning,
14241
14415
  .inc-alert-container .inc-alert--warning {
14242
- background-color: rgba(255, 244, 212, 0.9);
14243
- border-color: #ffc94a;
14244
- color: #c88a00;
14416
+ background-color: var(--bs-warning-bg-subtle);
14417
+ border-color: var(--bs-warning-border-subtle);
14418
+ color: var(--bs-warning-text-emphasis);
14245
14419
  }
14246
14420
  .inc-alert-container .alert-danger,
14247
14421
  .inc-alert-container .inc-alert--danger {
14248
- background-color: rgba(255, 240, 241, 0.9);
14249
- border-color: #ffb2bb;
14250
- color: #d11a2a;
14422
+ background-color: var(--bs-danger-bg-subtle);
14423
+ border-color: var(--bs-danger-border-subtle);
14424
+ color: var(--bs-danger-text-emphasis);
14251
14425
  }
14252
14426
  .inc-alert-container .alert-info,
14253
14427
  .inc-alert-container .inc-alert--info {
14254
- background-color: rgba(233, 236, 254, 0.9);
14255
- border-color: rgba(37, 68, 241, 0.25);
14256
- color: #1a30ab;
14428
+ background-color: var(--bs-info-bg-subtle);
14429
+ border-color: var(--bs-info-border-subtle);
14430
+ color: var(--bs-info-text-emphasis);
14257
14431
  }
14258
14432
  .inc-alert-container .alert-primary,
14259
14433
  .inc-alert-container .inc-alert--primary {
14260
- background-color: rgba(238, 241, 255, 0.9);
14261
- border-color: rgba(135, 152, 238, 0.35);
14262
- color: #3748a4;
14434
+ background-color: var(--bs-primary-bg-subtle);
14435
+ border-color: var(--bs-primary-border-subtle);
14436
+ color: var(--bs-primary-text-emphasis);
14263
14437
  }
14264
14438
 
14265
14439
  .inc-table {
@@ -14267,18 +14441,18 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14267
14441
  overflow: hidden;
14268
14442
  border-collapse: separate;
14269
14443
  border-spacing: 0;
14270
- border: 1px solid #c4c4c5;
14444
+ border: 1px solid var(--inc-border-default);
14271
14445
  }
14272
14446
  .inc-table thead {
14273
14447
  overflow: hidden;
14274
14448
  }
14275
14449
  .inc-table thead th {
14276
14450
  text-align: left;
14277
- background-color: #3748a4;
14451
+ background-color: var(--bs-primary);
14278
14452
  color: #ffffff;
14279
- border-color: #3748a4;
14453
+ border-color: var(--bs-primary);
14280
14454
  font-weight: 600;
14281
- border-right: 1px solid rgba(255, 255, 255, 0.2);
14455
+ border-right: 1px solid rgba(var(--inc-text-inverse-rgb), 0.2);
14282
14456
  font-size: 1rem;
14283
14457
  line-height: 1.5;
14284
14458
  }
@@ -14287,7 +14461,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14287
14461
  text-decoration: underline;
14288
14462
  }
14289
14463
  .inc-table thead th a:hover, .inc-table thead th a:focus {
14290
- color: rgba(255, 255, 255, 0.9);
14464
+ color: rgba(var(--inc-text-inverse-rgb), 0.9);
14291
14465
  }
14292
14466
  .inc-table thead tr:first-child th:first-child {
14293
14467
  border-top-left-radius: 0.25rem;
@@ -14300,7 +14474,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14300
14474
  .inc-table tbody th,
14301
14475
  .inc-table tfoot td,
14302
14476
  .inc-table tfoot th {
14303
- border-right: 1px solid #c4c4c5;
14477
+ border-right: 1px solid var(--inc-border-default);
14304
14478
  vertical-align: middle;
14305
14479
  }
14306
14480
  .inc-table tbody td:last-child,
@@ -14382,38 +14556,38 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14382
14556
  line-height: 1.45;
14383
14557
  }
14384
14558
  .inc-table--review-grid tbody tr:hover > * {
14385
- background: rgba(68, 89, 198, 0.035);
14559
+ background: rgba(var(--bs-primary-rgb), 0.035);
14386
14560
  }
14387
14561
  .inc-table--analytics-grid {
14388
- border-color: rgba(219, 220, 220, 0.95);
14389
- box-shadow: 0 1rem 2rem rgba(42, 49, 66, 0.05);
14562
+ border-color: var(--inc-border-subtle);
14563
+ box-shadow: 0 1rem 2rem rgba(var(--inc-surface-strong-rgb), 0.05);
14390
14564
  }
14391
14565
  .inc-table--analytics-grid thead th {
14392
- background-color: #f6f6f6;
14393
- color: #121316;
14394
- border-color: #dbdcdc;
14566
+ background-color: var(--inc-surface-secondary);
14567
+ color: var(--inc-text-primary);
14568
+ border-color: var(--inc-border-subtle);
14395
14569
  font-size: 0.75rem;
14396
14570
  letter-spacing: 0.08em;
14397
14571
  text-transform: uppercase;
14398
14572
  }
14399
14573
  .inc-table--analytics-grid tbody tr:nth-child(even) > * {
14400
- background: rgba(68, 89, 198, 0.02);
14574
+ background: rgba(var(--bs-primary-rgb), 0.02);
14401
14575
  }
14402
14576
  .inc-table--analytics-grid .inc-table__cell--numeric,
14403
14577
  .inc-table--analytics-grid .inc-table__cell--numeric-small,
14404
14578
  .inc-table--analytics-grid .inc-table__header--right {
14405
- color: #2a3142;
14579
+ color: var(--inc-text-primary);
14406
14580
  font-weight: 600;
14407
14581
  }
14408
14582
  .inc-table--spreadsheet-grid {
14409
- border-color: #dbdcdc;
14583
+ border-color: var(--inc-border-subtle);
14410
14584
  border-radius: 0.5rem;
14411
- box-shadow: inset 0 0 0 1px rgba(219, 220, 220, 0.35);
14585
+ box-shadow: inset 0 0 0 1px var(--inc-border-subtle);
14412
14586
  }
14413
14587
  .inc-table--spreadsheet-grid thead th {
14414
- background-color: #eef2f7;
14415
- color: #121316;
14416
- border-color: #dbdcdc;
14588
+ background-color: var(--inc-surface-secondary);
14589
+ color: var(--inc-text-primary);
14590
+ border-color: var(--inc-border-subtle);
14417
14591
  font-size: 0.75rem;
14418
14592
  letter-spacing: 0.04em;
14419
14593
  }
@@ -14429,7 +14603,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14429
14603
  line-height: 1.4;
14430
14604
  }
14431
14605
  .inc-table--spreadsheet-grid tbody tr:hover > * {
14432
- background: rgba(68, 89, 198, 0.04);
14606
+ background: rgba(var(--bs-primary-rgb), 0.04);
14433
14607
  }
14434
14608
  .inc-table__header--center,
14435
14609
  .inc-table__header th.inc-table__header--center {
@@ -14569,7 +14743,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14569
14743
  }
14570
14744
 
14571
14745
  .inc-table__bundle-hint {
14572
- color: #656668;
14746
+ color: var(--inc-text-muted);
14573
14747
  font-size: 0.75rem;
14574
14748
  line-height: 1.3;
14575
14749
  white-space: normal;
@@ -14602,8 +14776,8 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14602
14776
  justify-content: space-between;
14603
14777
  align-items: center;
14604
14778
  padding: 0.75rem;
14605
- background-color: var(--bs-light);
14606
- border-top: 1px solid var(--bs-border-color);
14779
+ background-color: var(--inc-surface-secondary);
14780
+ border-top: 1px solid var(--inc-border-default);
14607
14781
  }
14608
14782
  .inc-table-responsive__pagination {
14609
14783
  margin: 0;
@@ -14653,13 +14827,13 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14653
14827
  justify-content: center;
14654
14828
  }
14655
14829
  .inc-modal__dialog {
14656
- background: #ffffff;
14830
+ background: var(--inc-surface-primary);
14657
14831
  border-radius: 0.5rem;
14658
14832
  max-width: 31.25rem;
14659
14833
  width: 90%;
14660
14834
  max-height: 90vh;
14661
14835
  overflow-y: auto;
14662
- box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
14836
+ box-shadow: 0 10px 25px rgba(var(--inc-surface-strong-rgb), 0.5);
14663
14837
  position: relative;
14664
14838
  z-index: 2;
14665
14839
  }
@@ -14685,7 +14859,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14685
14859
  }
14686
14860
  .inc-modal__header {
14687
14861
  padding: 1rem 1.5rem;
14688
- border-bottom: 1px solid #dbdcdc;
14862
+ border-bottom: 1px solid var(--inc-border-subtle);
14689
14863
  display: flex;
14690
14864
  align-items: center;
14691
14865
  justify-content: space-between;
@@ -14715,7 +14889,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14715
14889
  }
14716
14890
  .inc-modal__footer {
14717
14891
  padding: 1rem 1.5rem;
14718
- border-top: 1px solid #dbdcdc;
14892
+ border-top: 1px solid var(--inc-border-subtle);
14719
14893
  display: flex;
14720
14894
  gap: 1rem;
14721
14895
  justify-content: flex-end;
@@ -14756,10 +14930,10 @@ body.inc-modal-open {
14756
14930
  display: flex;
14757
14931
  flex-direction: column;
14758
14932
  max-width: 100%;
14759
- background: #ffffff;
14760
- color: #121316;
14933
+ background: var(--inc-surface-primary);
14934
+ color: var(--inc-text-primary);
14761
14935
  visibility: hidden;
14762
- box-shadow: 0 1.25rem 2.5rem rgba(42, 49, 66, 0.18);
14936
+ box-shadow: 0 1.25rem 2.5rem rgba(var(--inc-surface-strong-rgb), 0.18);
14763
14937
  transition: transform 0.25s ease, visibility 0.25s ease;
14764
14938
  }
14765
14939
  .inc-offcanvas.is-open {
@@ -14832,7 +15006,7 @@ body.inc-modal-open {
14832
15006
  justify-content: space-between;
14833
15007
  gap: 1rem;
14834
15008
  padding: 1rem 1.25rem;
14835
- border-bottom: 1px solid #dbdcdc;
15009
+ border-bottom: 1px solid var(--inc-border-subtle);
14836
15010
  }
14837
15011
 
14838
15012
  .inc-offcanvas-title {
@@ -14873,7 +15047,7 @@ body.inc-offcanvas-open {
14873
15047
  }
14874
15048
  .inc-form__label--required::after {
14875
15049
  content: " *";
14876
- color: #d11a2a;
15050
+ color: var(--bs-danger-text-emphasis);
14877
15051
  }
14878
15052
  .inc-form__hint, .inc-form__feedback {
14879
15053
  font-size: 0.75rem;
@@ -14881,49 +15055,49 @@ body.inc-offcanvas-open {
14881
15055
  margin: 0;
14882
15056
  }
14883
15057
  .inc-form__hint {
14884
- color: var(--bs-secondary-color);
15058
+ color: var(--inc-text-muted);
14885
15059
  }
14886
15060
  .inc-form__feedback {
14887
15061
  font-weight: 500;
14888
15062
  }
14889
15063
  .inc-form__feedback--error {
14890
- color: #d11a2a;
15064
+ color: var(--bs-danger-text-emphasis);
14891
15065
  }
14892
15066
  .inc-form__feedback--success {
14893
- color: #009743;
15067
+ color: var(--bs-success-text-emphasis);
14894
15068
  }
14895
15069
  .inc-form__control.is-invalid, .inc-form__control.inc-form--is-invalid, .inc-form__control[aria-invalid=true], .inc-form__select.is-invalid, .inc-form__select.inc-form--is-invalid, .inc-form__select[aria-invalid=true] {
14896
- border-color: #d11a2a;
14897
- box-shadow: 0 0 0 0.1875rem rgba(209, 26, 42, 0.12);
15070
+ border-color: var(--bs-danger-border-subtle);
15071
+ box-shadow: 0 0 0 0.1875rem rgba(var(--bs-danger-rgb), 0.12);
14898
15072
  }
14899
15073
  .inc-form__control.is-valid, .inc-form__control.inc-form--is-valid, .inc-form__select.is-valid, .inc-form__select.inc-form--is-valid {
14900
- border-color: #009743;
14901
- box-shadow: 0 0 0 0.1875rem rgba(0, 151, 67, 0.12);
15074
+ border-color: var(--bs-success-border-subtle);
15075
+ box-shadow: 0 0 0 0.1875rem rgba(var(--bs-success-rgb), 0.12);
14902
15076
  }
14903
15077
  .inc-form__check.is-invalid .inc-form__check-label, .inc-form__check.inc-form--is-invalid .inc-form__check-label {
14904
- color: #d11a2a;
15078
+ color: var(--bs-danger-text-emphasis);
14905
15079
  }
14906
15080
  .inc-form__error-summary {
14907
15081
  display: flex;
14908
15082
  flex-direction: column;
14909
15083
  gap: 0.5rem;
14910
15084
  padding: 1rem 1.125rem;
14911
- border: 1px solid rgba(209, 26, 42, 0.3);
14912
- border-left: 0.25rem solid #d11a2a;
15085
+ border: 1px solid var(--bs-danger-border-subtle);
15086
+ border-left: 0.25rem solid var(--bs-danger-text-emphasis);
14913
15087
  border-radius: 0.5rem;
14914
- background: rgba(209, 26, 42, 0.06);
15088
+ background: var(--bs-danger-bg-subtle);
14915
15089
  }
14916
15090
  .inc-form__error-summary-title {
14917
15091
  margin: 0;
14918
15092
  font-size: 0.875rem;
14919
15093
  font-weight: 600;
14920
- color: #d11a2a;
15094
+ color: var(--bs-danger-text-emphasis);
14921
15095
  }
14922
15096
  .inc-form__error-summary-list {
14923
15097
  margin: 0;
14924
15098
  padding-left: 1rem;
14925
15099
  font-size: 0.8125rem;
14926
- color: #121316;
15100
+ color: var(--inc-text-primary);
14927
15101
  }
14928
15102
 
14929
15103
  .inc-filter-bar {
@@ -14931,9 +15105,9 @@ body.inc-offcanvas-open {
14931
15105
  flex-direction: column;
14932
15106
  gap: 1rem;
14933
15107
  padding: 1rem 1.125rem;
14934
- border: 1px solid #dbdcdc;
15108
+ border: 1px solid var(--inc-border-subtle);
14935
15109
  border-radius: 0.5rem;
14936
- background: #ffffff;
15110
+ background: var(--inc-surface-primary);
14937
15111
  }
14938
15112
  .inc-filter-bar__main {
14939
15113
  display: flex;
@@ -14968,10 +15142,10 @@ body.inc-offcanvas-open {
14968
15142
  align-items: center;
14969
15143
  gap: 0.5rem;
14970
15144
  padding: 0.375rem 0.75rem;
14971
- border: 1px solid #dbdcdc;
15145
+ border: 1px solid var(--inc-border-subtle);
14972
15146
  border-radius: 999px;
14973
- background: #f6f6f6;
14974
- color: #121316;
15147
+ background: var(--inc-surface-secondary);
15148
+ color: var(--inc-text-primary);
14975
15149
  font-size: 0.75rem;
14976
15150
  font-weight: 600;
14977
15151
  line-height: 1;
@@ -14980,16 +15154,16 @@ body.inc-offcanvas-open {
14980
15154
  appearance: none;
14981
15155
  border: 0;
14982
15156
  background: transparent;
14983
- color: var(--bs-secondary-color);
15157
+ color: var(--inc-text-muted);
14984
15158
  font-size: 0.875rem;
14985
15159
  line-height: 1;
14986
15160
  padding: 0;
14987
15161
  cursor: pointer;
14988
15162
  }
14989
15163
  .inc-filter-chip--accent {
14990
- border-color: rgba(68, 89, 198, 0.2);
14991
- background: rgba(68, 89, 198, 0.08);
14992
- color: #4459c6;
15164
+ border-color: rgba(var(--bs-primary-rgb), 0.2);
15165
+ background: rgba(var(--bs-primary-rgb), 0.08);
15166
+ color: var(--bs-primary);
14993
15167
  }
14994
15168
 
14995
15169
  .inc-state-panel {
@@ -14997,9 +15171,9 @@ body.inc-offcanvas-open {
14997
15171
  flex-direction: column;
14998
15172
  gap: 1rem;
14999
15173
  padding: 1.5rem;
15000
- border: 1px solid #dbdcdc;
15174
+ border: 1px solid var(--inc-border-subtle);
15001
15175
  border-radius: 0.5rem;
15002
- background: #ffffff;
15176
+ background: var(--inc-surface-primary);
15003
15177
  }
15004
15178
  .inc-state-panel__head {
15005
15179
  display: flex;
@@ -15013,8 +15187,8 @@ body.inc-offcanvas-open {
15013
15187
  align-items: center;
15014
15188
  justify-content: center;
15015
15189
  border-radius: 0.875rem;
15016
- background: #f6f6f6;
15017
- color: #4459c6;
15190
+ background: var(--inc-surface-secondary);
15191
+ color: var(--bs-primary);
15018
15192
  font-size: 1.25rem;
15019
15193
  font-weight: 700;
15020
15194
  flex: 0 0 auto;
@@ -15025,7 +15199,7 @@ body.inc-offcanvas-open {
15025
15199
  font-weight: 600;
15026
15200
  }
15027
15201
  .inc-state-panel__body {
15028
- color: var(--bs-secondary-color);
15202
+ color: var(--inc-text-muted);
15029
15203
  font-size: 0.875rem;
15030
15204
  line-height: 1.6;
15031
15205
  margin: 0;
@@ -15036,30 +15210,30 @@ body.inc-offcanvas-open {
15036
15210
  gap: 0.75rem;
15037
15211
  }
15038
15212
  .inc-state-panel--empty {
15039
- background: linear-gradient(180deg, rgba(68, 89, 198, 0.05), rgba(68, 89, 198, 0.01));
15213
+ background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.05), rgba(var(--bs-primary-rgb), 0.01));
15040
15214
  }
15041
15215
  .inc-state-panel--results {
15042
15216
  border-style: dashed;
15043
- background: #f6f6f6;
15217
+ background: var(--inc-surface-secondary);
15044
15218
  }
15045
15219
  .inc-state-panel--loading {
15046
- background: linear-gradient(180deg, rgba(68, 89, 198, 0.04), #ffffff);
15220
+ background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.04), var(--inc-surface-primary));
15047
15221
  }
15048
15222
  .inc-state-panel--error {
15049
- border-color: rgba(209, 26, 42, 0.22);
15050
- background: rgba(209, 26, 42, 0.04);
15223
+ border-color: var(--bs-danger-border-subtle);
15224
+ background: var(--bs-danger-bg-subtle);
15051
15225
  }
15052
15226
  .inc-state-panel--error .inc-state-panel__icon {
15053
- background: rgba(209, 26, 42, 0.12);
15054
- color: #d11a2a;
15227
+ background: rgba(var(--bs-danger-rgb), 0.12);
15228
+ color: var(--bs-danger-text-emphasis);
15055
15229
  }
15056
15230
  .inc-state-panel--locked {
15057
- border-color: rgba(200, 138, 0, 0.24);
15058
- background: rgba(200, 138, 0, 0.05);
15231
+ border-color: var(--bs-warning-border-subtle);
15232
+ background: var(--bs-warning-bg-subtle);
15059
15233
  }
15060
15234
  .inc-state-panel--locked .inc-state-panel__icon {
15061
- background: rgba(200, 138, 0, 0.14);
15062
- color: #c88a00;
15235
+ background: rgba(var(--bs-warning-rgb), 0.14);
15236
+ color: var(--bs-warning-text-emphasis);
15063
15237
  }
15064
15238
 
15065
15239
  .inc-permission-banner {
@@ -15067,9 +15241,9 @@ body.inc-offcanvas-open {
15067
15241
  align-items: flex-start;
15068
15242
  gap: 1rem;
15069
15243
  padding: 1rem 1.125rem;
15070
- border: 1px solid rgba(200, 138, 0, 0.22);
15244
+ border: 1px solid var(--bs-warning-border-subtle);
15071
15245
  border-radius: 0.5rem;
15072
- background: rgba(200, 138, 0, 0.06);
15246
+ background: var(--bs-warning-bg-subtle);
15073
15247
  }
15074
15248
  .inc-permission-banner__icon {
15075
15249
  width: 2rem;
@@ -15078,8 +15252,8 @@ body.inc-offcanvas-open {
15078
15252
  display: inline-flex;
15079
15253
  align-items: center;
15080
15254
  justify-content: center;
15081
- background: rgba(200, 138, 0, 0.14);
15082
- color: #c88a00;
15255
+ background: rgba(var(--bs-warning-rgb), 0.14);
15256
+ color: var(--bs-warning-text-emphasis);
15083
15257
  font-weight: 700;
15084
15258
  flex: 0 0 auto;
15085
15259
  }
@@ -15091,7 +15265,7 @@ body.inc-offcanvas-open {
15091
15265
  .inc-permission-banner__text {
15092
15266
  margin: 0;
15093
15267
  font-size: 0.8125rem;
15094
- color: #121316;
15268
+ color: var(--inc-text-primary);
15095
15269
  }
15096
15270
 
15097
15271
  .inc-key-value-grid {
@@ -15109,13 +15283,13 @@ body.inc-offcanvas-open {
15109
15283
  }
15110
15284
  .inc-key-value--card {
15111
15285
  padding: 0.875rem 1rem;
15112
- border: 1px solid #dbdcdc;
15286
+ border: 1px solid var(--inc-border-subtle);
15113
15287
  border-radius: 0.5rem;
15114
- background: #ffffff;
15288
+ background: var(--inc-surface-primary);
15115
15289
  }
15116
15290
  .inc-key-value__label {
15117
15291
  margin: 0;
15118
- color: var(--bs-secondary-color);
15292
+ color: var(--inc-text-muted);
15119
15293
  font-size: 0.75rem;
15120
15294
  font-weight: 600;
15121
15295
  letter-spacing: 0.04em;
@@ -15123,7 +15297,7 @@ body.inc-offcanvas-open {
15123
15297
  }
15124
15298
  .inc-key-value__value {
15125
15299
  margin: 0;
15126
- color: #121316;
15300
+ color: var(--inc-text-primary);
15127
15301
  font-size: 0.875rem;
15128
15302
  font-weight: 500;
15129
15303
  line-height: 1.5;
@@ -15139,7 +15313,7 @@ body.inc-offcanvas-open {
15139
15313
  .inc-skeleton {
15140
15314
  display: block;
15141
15315
  border-radius: 999px;
15142
- background: linear-gradient(90deg, rgba(219, 220, 220, 0.8) 20%, rgba(241, 241, 241, 0.95) 50%, rgba(219, 220, 220, 0.8) 80%);
15316
+ background: linear-gradient(90deg, var(--inc-surface-muted) 20%, var(--inc-surface-secondary) 50%, var(--inc-surface-muted) 80%);
15143
15317
  background-size: 200% 100%;
15144
15318
  animation: inc-skeleton-shimmer 1.5s linear infinite;
15145
15319
  }
@@ -15202,6 +15376,9 @@ body.inc-offcanvas-open {
15202
15376
  overflow: hidden;
15203
15377
  white-space: nowrap;
15204
15378
  }
15379
+ .inc-btn.is-loading:has(> .inc-spinner)::after, .inc-btn.is-loading:has(> .inc-loading-dots)::after {
15380
+ display: none;
15381
+ }
15205
15382
  .inc-btn.is-loading::after {
15206
15383
  content: "";
15207
15384
  position: absolute;
@@ -15214,6 +15391,12 @@ body.inc-offcanvas-open {
15214
15391
  border-right-color: transparent;
15215
15392
  animation: inc-loading-spin 0.8s linear infinite;
15216
15393
  }
15394
+ .inc-btn.is-loading > .inc-spinner,
15395
+ .inc-btn.is-loading > .inc-loading-dots {
15396
+ position: absolute;
15397
+ inset: 50% auto auto 50%;
15398
+ transform: translate(-50%, -50%);
15399
+ }
15217
15400
 
15218
15401
  .inc-bulk-bar {
15219
15402
  display: flex;
@@ -15221,9 +15404,9 @@ body.inc-offcanvas-open {
15221
15404
  justify-content: space-between;
15222
15405
  gap: 1rem;
15223
15406
  padding: 0.75rem 1rem;
15224
- border: 1px solid rgba(68, 89, 198, 0.18);
15407
+ border: 1px solid var(--bs-primary-border-subtle);
15225
15408
  border-radius: 0.5rem;
15226
- background: rgba(68, 89, 198, 0.08);
15409
+ background: var(--bs-primary-bg-subtle);
15227
15410
  }
15228
15411
  .inc-bulk-bar__meta {
15229
15412
  display: flex;
@@ -15235,7 +15418,7 @@ body.inc-offcanvas-open {
15235
15418
  .inc-bulk-bar__count {
15236
15419
  font-size: 0.875rem;
15237
15420
  font-weight: 600;
15238
- color: #4459c6;
15421
+ color: var(--bs-primary-text-emphasis);
15239
15422
  }
15240
15423
  .inc-bulk-bar__actions {
15241
15424
  display: flex;
@@ -15267,17 +15450,17 @@ body.inc-offcanvas-open {
15267
15450
  z-index: 3;
15268
15451
  }
15269
15452
  .inc-table__row--selected > * {
15270
- background: rgba(68, 89, 198, 0.08) !important;
15453
+ background: rgba(var(--bs-primary-rgb), 0.08) !important;
15271
15454
  }
15272
15455
  .inc-table__row--warning > * {
15273
- background: rgba(200, 138, 0, 0.08) !important;
15456
+ background: rgba(var(--bs-warning-rgb), 0.08) !important;
15274
15457
  }
15275
15458
  .inc-table__row--danger > * {
15276
- background: rgba(209, 26, 42, 0.06) !important;
15459
+ background: rgba(var(--bs-danger-rgb), 0.06) !important;
15277
15460
  }
15278
15461
  .inc-table__row--locked > * {
15279
- background: rgba(219, 220, 220, 0.35) !important;
15280
- color: var(--bs-secondary-color);
15462
+ background: var(--inc-surface-muted) !important;
15463
+ color: var(--inc-text-muted);
15281
15464
  }
15282
15465
 
15283
15466
  .inc-table-responsive--sticky {
@@ -15308,7 +15491,7 @@ body.inc-offcanvas-open {
15308
15491
  top: 0;
15309
15492
  bottom: -1rem;
15310
15493
  width: 0.125rem;
15311
- background: #dbdcdc;
15494
+ background: var(--inc-border-subtle);
15312
15495
  }
15313
15496
  .inc-timeline__item:last-child .inc-timeline__rail::before {
15314
15497
  bottom: 0;
@@ -15318,7 +15501,7 @@ body.inc-offcanvas-open {
15318
15501
  height: 0.75rem;
15319
15502
  border-radius: 999px;
15320
15503
  background: #4459c6;
15321
- box-shadow: 0 0 0 0.1875rem #ffffff;
15504
+ box-shadow: 0 0 0 0.1875rem var(--inc-surface-primary);
15322
15505
  position: relative;
15323
15506
  z-index: 1;
15324
15507
  }
@@ -15336,9 +15519,9 @@ body.inc-offcanvas-open {
15336
15519
  flex-direction: column;
15337
15520
  gap: 0.5rem;
15338
15521
  padding: 0.875rem 1rem;
15339
- border: 1px solid #dbdcdc;
15522
+ border: 1px solid var(--inc-border-subtle);
15340
15523
  border-radius: 0.5rem;
15341
- background: #ffffff;
15524
+ background: var(--inc-surface-primary);
15342
15525
  }
15343
15526
  .inc-timeline__header, .inc-timeline__meta {
15344
15527
  display: flex;
@@ -15352,12 +15535,12 @@ body.inc-offcanvas-open {
15352
15535
  font-weight: 600;
15353
15536
  }
15354
15537
  .inc-timeline__meta {
15355
- color: var(--bs-secondary-color);
15538
+ color: var(--inc-text-muted);
15356
15539
  font-size: 0.75rem;
15357
15540
  }
15358
15541
  .inc-timeline__body {
15359
15542
  margin: 0;
15360
- color: #121316;
15543
+ color: var(--inc-text-primary);
15361
15544
  font-size: 0.8125rem;
15362
15545
  line-height: 1.6;
15363
15546
  }
@@ -15370,7 +15553,7 @@ body.inc-offcanvas-open {
15370
15553
  padding: 1rem 1.125rem;
15371
15554
  border: 1.5px dashed #949596;
15372
15555
  border-radius: 0.5rem;
15373
- background: linear-gradient(180deg, #f6f6f6, #ffffff);
15556
+ background: linear-gradient(180deg, var(--inc-surface-secondary), var(--inc-surface-primary));
15374
15557
  }
15375
15558
  .inc-file-dropzone__content {
15376
15559
  display: flex;
@@ -15385,11 +15568,11 @@ body.inc-offcanvas-open {
15385
15568
  .inc-file-dropzone__text {
15386
15569
  margin: 0;
15387
15570
  font-size: 0.8125rem;
15388
- color: var(--bs-secondary-color);
15571
+ color: var(--inc-text-muted);
15389
15572
  }
15390
15573
  .inc-file-dropzone--active {
15391
- border-color: #4459c6;
15392
- background: linear-gradient(180deg, rgba(68, 89, 198, 0.08), rgba(68, 89, 198, 0.02));
15574
+ border-color: var(--bs-primary);
15575
+ background: linear-gradient(180deg, var(--bs-primary-bg-subtle), var(--inc-surface-primary));
15393
15576
  }
15394
15577
  @media (max-width: 767.98px) {
15395
15578
  .inc-file-dropzone {
@@ -15410,9 +15593,9 @@ body.inc-offcanvas-open {
15410
15593
  gap: 1rem;
15411
15594
  align-items: center;
15412
15595
  padding: 0.875rem 1rem;
15413
- border: 1px solid #dbdcdc;
15596
+ border: 1px solid var(--inc-border-subtle);
15414
15597
  border-radius: 0.5rem;
15415
- background: #ffffff;
15598
+ background: var(--inc-surface-primary);
15416
15599
  }
15417
15600
  .inc-file-row__meta {
15418
15601
  display: flex;
@@ -15428,7 +15611,7 @@ body.inc-offcanvas-open {
15428
15611
  .inc-file-row__detail {
15429
15612
  margin: 0;
15430
15613
  font-size: 0.75rem;
15431
- color: var(--bs-secondary-color);
15614
+ color: var(--inc-text-muted);
15432
15615
  }
15433
15616
  .inc-file-row__actions {
15434
15617
  display: flex;
@@ -15452,9 +15635,9 @@ body.inc-offcanvas-open {
15452
15635
  gap: 1rem;
15453
15636
  height: 100%;
15454
15637
  padding: 1.25rem;
15455
- border-left: 1px solid #dbdcdc;
15456
- background: #ffffff;
15457
- box-shadow: -1rem 0 2rem rgba(42, 49, 66, 0.08);
15638
+ border-left: 1px solid var(--inc-border-subtle);
15639
+ background: var(--inc-surface-primary);
15640
+ box-shadow: -1rem 0 2rem rgba(var(--inc-surface-strong-rgb), 0.08);
15458
15641
  }
15459
15642
  .inc-drawer__header {
15460
15643
  display: flex;
@@ -15462,7 +15645,7 @@ body.inc-offcanvas-open {
15462
15645
  justify-content: space-between;
15463
15646
  gap: 1rem;
15464
15647
  padding-bottom: 1rem;
15465
- border-bottom: 1px solid #dbdcdc;
15648
+ border-bottom: 1px solid var(--inc-border-subtle);
15466
15649
  }
15467
15650
  .inc-drawer__body {
15468
15651
  display: flex;
@@ -15474,7 +15657,7 @@ body.inc-offcanvas-open {
15474
15657
  flex-wrap: wrap;
15475
15658
  gap: 0.75rem;
15476
15659
  padding-top: 1rem;
15477
- border-top: 1px solid #dbdcdc;
15660
+ border-top: 1px solid var(--inc-border-subtle);
15478
15661
  margin-top: auto;
15479
15662
  }
15480
15663
 
@@ -15489,10 +15672,10 @@ body.inc-offcanvas-open {
15489
15672
  align-items: flex-start;
15490
15673
  gap: 0.875rem;
15491
15674
  padding: 0.875rem 1rem;
15492
- border: 1px solid #dbdcdc;
15675
+ border: 1px solid var(--inc-border-subtle);
15493
15676
  border-radius: 0.5rem;
15494
- background: #ffffff;
15495
- box-shadow: 0 0.75rem 1.5rem rgba(42, 49, 66, 0.08);
15677
+ background: var(--inc-surface-primary);
15678
+ box-shadow: 0 0.75rem 1.5rem rgba(var(--inc-surface-strong-rgb), 0.08);
15496
15679
  }
15497
15680
  .inc-toast-card__icon {
15498
15681
  width: 2rem;
@@ -15501,8 +15684,8 @@ body.inc-offcanvas-open {
15501
15684
  display: inline-flex;
15502
15685
  align-items: center;
15503
15686
  justify-content: center;
15504
- background: rgba(68, 89, 198, 0.1);
15505
- color: #4459c6;
15687
+ background: var(--bs-primary-bg-subtle);
15688
+ color: var(--bs-primary-text-emphasis);
15506
15689
  font-weight: 700;
15507
15690
  flex: 0 0 auto;
15508
15691
  }
@@ -15514,7 +15697,7 @@ body.inc-offcanvas-open {
15514
15697
  .inc-toast-card__text {
15515
15698
  margin: 0;
15516
15699
  font-size: 0.8125rem;
15517
- color: var(--bs-secondary-color);
15700
+ color: var(--inc-text-muted);
15518
15701
  }
15519
15702
 
15520
15703
  /*# sourceMappingURL=inc-design-language.css.map */