@akropolys/kiku 1.7.0 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/styles.css CHANGED
@@ -8,10 +8,6 @@
8
8
  .hsk-cb-close,
9
9
  .hsk-cb-topbar-btn,
10
10
  .hsk-cb-chip,
11
- .hsk-cb-sidebar-toggle,
12
- .hsk-cb-sidebar-new,
13
- .hsk-cb-sidebar-session,
14
- .hsk-cb-sidebar-session-del,
15
11
  .hsk-cb-source,
16
12
  .hsk-cb-sources-next,
17
13
  .hsk-action-pill,
@@ -68,24 +64,6 @@
68
64
  display: flex;
69
65
  align-items: center;
70
66
  }
71
- .hsk-brand-a {
72
- color: var(--hsk-brand-green, #2D7A4B) !important;
73
- }
74
- .hsk-akr-breath {
75
- animation: hsk-breath-pulse 3s ease-in-out infinite;
76
- stroke: var(--hsk-brand-green, #2D7A4B);
77
- transform-origin: 8.5px 5px;
78
- }
79
- @keyframes hsk-breath-pulse {
80
- 0%, 100% {
81
- opacity: 0.55;
82
- stroke-width: 1.5;
83
- }
84
- 50% {
85
- opacity: 1;
86
- stroke-width: 2.2;
87
- }
88
- }
89
67
  .hsk-chat-title {
90
68
  font-size: 14px;
91
69
  font-weight: 600;
@@ -522,7 +500,7 @@
522
500
  display: flex;
523
501
  flex-direction: column;
524
502
  height: 100%;
525
- max-width: 780px;
503
+ max-width: 960px;
526
504
  width: 100%;
527
505
  margin: 0 auto;
528
506
  animation: hsk-panel-in .28s cubic-bezier(.34, 1.2, .64, 1) both;
@@ -836,6 +814,7 @@
836
814
  overflow: hidden;
837
815
  border-radius: var(--hsk-border-radius, 0px);
838
816
  display: block;
817
+ background: var(--hsk-chat-source-bg, #f8f9fa);
839
818
  }
840
819
  .hsk-cb-src-imgwrap img {
841
820
  width: 100%;
@@ -919,56 +898,152 @@
919
898
  gap: 14px;
920
899
  padding: 20px 0;
921
900
  }
922
- .hsk-cb-typing {
923
- display: flex;
924
- align-items: center;
925
- gap: 6px;
926
- padding: 10px 16px;
927
- border-radius: 20px;
928
- background: var(--hsk-typing-bg, rgba(0,0,0,.05));
901
+ .hsk-cb-thinking-icon {
902
+ position: relative;
903
+ width: 40px;
904
+ height: 40px;
905
+ color: var(--hsk-primary, #ff6a33);
906
+ flex-shrink: 0;
929
907
  }
930
- .hsk-cb-dot {
931
- width: 7px;
932
- height: 7px;
908
+ .hsk-cb-thinking-icon .hsk-brand-mark {
909
+ position: absolute;
910
+ inset: 0;
911
+ fill: currentColor;
912
+ animation: hsk-glyph-breathe 2.8s ease-in-out infinite;
913
+ }
914
+ @keyframes hsk-glyph-breathe {
915
+ 0%, 100% {
916
+ opacity: 0.88;
917
+ transform: scale(0.98);
918
+ }
919
+ 50% {
920
+ opacity: 1;
921
+ transform: scale(1.01);
922
+ }
923
+ }
924
+ .hsk-handle-orbit {
925
+ position: absolute;
926
+ left: 56.8%;
927
+ top: 69.84%;
928
+ width: 0;
929
+ height: 0;
930
+ animation: hsk-orbit-scale 2.8s infinite;
931
+ }
932
+ .hsk-handle-ring {
933
+ position: absolute;
934
+ inset: 0;
935
+ animation: hsk-orbit-spin 2.8s infinite;
936
+ }
937
+ .hsk-handle-ball {
938
+ position: absolute;
939
+ top: 0;
940
+ left: 0;
941
+ width: 4px;
942
+ height: 4px;
943
+ margin: -2px 0 0 -2px;
933
944
  border-radius: 50%;
934
- background: var(--hsk-primary, #ff6a33);
935
- animation: hsk-wave-bounce 1.2s ease-in-out infinite;
936
- transform-origin: bottom center;
937
- flex-shrink: 0;
945
+ background: currentColor;
946
+ transform: rotate(calc(var(--i) * 72deg)) translateX(12px) scale(calc(1 - var(--i) * 0.15));
947
+ opacity: calc(1 - var(--i) * 0.19);
938
948
  }
939
- .hsk-cb-dot:nth-child(1) {
940
- animation-delay: 0s;
949
+ .hsk-handle-ball:nth-child(1) {
950
+ --i: 0;
941
951
  }
942
- .hsk-cb-dot:nth-child(2) {
943
- animation-delay: 0.16s;
952
+ .hsk-handle-ball:nth-child(2) {
953
+ --i: 1;
944
954
  }
945
- .hsk-cb-dot:nth-child(3) {
946
- animation-delay: 0.32s;
955
+ .hsk-handle-ball:nth-child(3) {
956
+ --i: 2;
947
957
  }
948
- @keyframes hsk-wave-bounce {
949
- 0%, 100% {
950
- transform: translateY(0) scale(1, 1);
951
- opacity: 0.55;
958
+ .hsk-handle-ball:nth-child(4) {
959
+ --i: 3;
960
+ }
961
+ .hsk-handle-ball:nth-child(5) {
962
+ --i: 4;
963
+ }
964
+ .hsk-handle-rest {
965
+ position: absolute;
966
+ left: 56.8%;
967
+ top: 69.84%;
968
+ width: 4px;
969
+ height: 4px;
970
+ margin: -2px 0 0 -2px;
971
+ border-radius: 50%;
972
+ background: currentColor;
973
+ animation: hsk-handle-pop 2.8s infinite;
974
+ }
975
+ @keyframes hsk-orbit-scale {
976
+ 0% {
977
+ transform: scale(0);
978
+ animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
952
979
  }
953
980
  12% {
954
- transform: translateY(0) scale(1.35, 0.65);
955
- opacity: 0.6;
981
+ transform: scale(1);
982
+ animation-timing-function: linear;
956
983
  }
957
- 28% {
958
- transform: translateY(-5px) scale(0.75, 1.3);
959
- opacity: 0.85;
984
+ 60% {
985
+ transform: scale(1);
986
+ animation-timing-function: cubic-bezier(0.55, 0, 0.85, 0.35);
960
987
  }
961
- 48% {
962
- transform: translateY(-12px) scale(1, 1);
988
+ 76%, 100% {
989
+ transform: scale(0);
990
+ }
991
+ }
992
+ @keyframes hsk-orbit-spin {
993
+ 0% {
994
+ transform: rotate(0deg);
995
+ animation-timing-function: ease-in;
996
+ }
997
+ 60% {
998
+ transform: rotate(560deg);
999
+ animation-timing-function: linear;
1000
+ }
1001
+ 76%, 100% {
1002
+ transform: rotate(650deg);
1003
+ }
1004
+ }
1005
+ @keyframes hsk-handle-pop {
1006
+ 0%, 74% {
1007
+ opacity: 0;
1008
+ transform: scale(0);
1009
+ }
1010
+ 84% {
1011
+ opacity: 1;
1012
+ transform: scale(1.4);
1013
+ animation-timing-function: ease-out;
1014
+ }
1015
+ 92% {
1016
+ transform: scale(0.9);
1017
+ }
1018
+ 100% {
963
1019
  opacity: 1;
1020
+ transform: scale(1);
964
1021
  }
965
- 68% {
966
- transform: translateY(-5px) scale(0.75, 1.3);
967
- opacity: 0.85;
1022
+ }
1023
+ .hsk-cb-thinking-text {
1024
+ font-size: 13.5px;
1025
+ font-weight: 500;
1026
+ background-image:
1027
+ linear-gradient(
1028
+ 90deg,
1029
+ var(--hsk-chat-muted, #9aa0a6) 0%,
1030
+ var(--hsk-chat-muted, #9aa0a6) 38%,
1031
+ var(--hsk-chat-text, #1f1f1f) 50%,
1032
+ var(--hsk-chat-muted, #9aa0a6) 62%,
1033
+ var(--hsk-chat-muted, #9aa0a6) 100%);
1034
+ background-size: 220% 100%;
1035
+ -webkit-background-clip: text;
1036
+ background-clip: text;
1037
+ color: transparent;
1038
+ -webkit-text-fill-color: transparent;
1039
+ animation: hsk-shimmer 2.2s linear infinite;
1040
+ }
1041
+ @keyframes hsk-shimmer {
1042
+ 0% {
1043
+ background-position: 130% 0;
968
1044
  }
969
- 88% {
970
- transform: translateY(0) scale(1.35, 0.65);
971
- opacity: 0.65;
1045
+ 100% {
1046
+ background-position: -110% 0;
972
1047
  }
973
1048
  }
974
1049
  .hsk-cb-input-wrap {
@@ -2010,7 +2085,8 @@
2010
2085
  }
2011
2086
  }
2012
2087
  .hsk-markdown-table {
2013
- width: 100%;
2088
+ width: auto;
2089
+ min-width: 100%;
2014
2090
  border-collapse: separate;
2015
2091
  border-spacing: 0;
2016
2092
  text-align: left;
@@ -2020,6 +2096,10 @@
2020
2096
  overflow: hidden;
2021
2097
  margin: 10px 0;
2022
2098
  }
2099
+ .hsk-markdown-table th,
2100
+ .hsk-markdown-table td {
2101
+ white-space: nowrap;
2102
+ }
2023
2103
  .hsk-markdown-table th {
2024
2104
  padding: 10px 14px;
2025
2105
  background-color: rgba(0, 0, 0, 0.025);
@@ -2035,9 +2115,23 @@
2035
2115
  .hsk-markdown-table tr:nth-child(even) td {
2036
2116
  background-color: rgba(0, 0, 0, 0.015);
2037
2117
  }
2118
+ .hsk-markdown-table tr:nth-child(even) td:first-child {
2119
+ background-color: var(--hsk-bg, #ffffff);
2120
+ }
2038
2121
  .hsk-markdown-table tr:last-child td {
2039
2122
  border-bottom: none;
2040
2123
  }
2124
+ .hsk-markdown-table th:first-child,
2125
+ .hsk-markdown-table td:first-child {
2126
+ position: sticky;
2127
+ left: 0;
2128
+ z-index: 1;
2129
+ background-color: var(--hsk-bg, #ffffff);
2130
+ max-width: 40vw;
2131
+ overflow: hidden;
2132
+ text-overflow: ellipsis;
2133
+ box-shadow: 2px 0 4px rgba(0, 0, 0, 0.06);
2134
+ }
2041
2135
  @media (prefers-color-scheme: dark) {
2042
2136
  .hsk-markdown-table {
2043
2137
  border-color: #202124;
@@ -2054,6 +2148,14 @@
2054
2148
  .hsk-markdown-table tr:nth-child(even) td {
2055
2149
  background-color: rgba(255, 255, 255, 0.015);
2056
2150
  }
2151
+ .hsk-markdown-table th:first-child,
2152
+ .hsk-markdown-table td:first-child {
2153
+ background-color: #0a0a0a;
2154
+ box-shadow: 2px 0 4px rgba(0, 0, 0, 0.4);
2155
+ }
2156
+ .hsk-markdown-table tr:nth-child(even) td:first-child {
2157
+ background-color: #0a0a0a;
2158
+ }
2057
2159
  }
2058
2160
  .hsk-markdown-link {
2059
2161
  color: var(--hsk-primary, #ff6a33);
@@ -2312,158 +2414,6 @@
2312
2414
  .hsk-cb-phone-submit:hover {
2313
2415
  border-color: var(--hsk-primary, #6366f1);
2314
2416
  }
2315
- .hsk-cb-panel--with-sidebar {
2316
- display: flex;
2317
- flex-direction: row;
2318
- max-width: 1000px;
2319
- overflow: hidden;
2320
- }
2321
- .hsk-cb-sidebar {
2322
- width: 0;
2323
- min-width: 0;
2324
- flex-shrink: 0;
2325
- overflow: hidden;
2326
- background: var(--hsk-sidebar-bg, #f8f8f7);
2327
- border-right: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.08));
2328
- display: flex;
2329
- flex-direction: column;
2330
- transition: width 0.25s cubic-bezier(.4, 0, .2, 1), min-width 0.25s cubic-bezier(.4, 0, .2, 1);
2331
- }
2332
- .hsk-cb-sidebar--open {
2333
- width: 240px;
2334
- min-width: 240px;
2335
- }
2336
- .hsk-cb-sidebar-header {
2337
- display: flex;
2338
- align-items: center;
2339
- justify-content: space-between;
2340
- padding: 20px 14px 12px;
2341
- flex-shrink: 0;
2342
- border-bottom: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.07));
2343
- }
2344
- .hsk-cb-sidebar-title {
2345
- font-size: 12px;
2346
- font-weight: 600;
2347
- letter-spacing: .06em;
2348
- text-transform: uppercase;
2349
- color: var(--hsk-chat-muted, #5f6368);
2350
- white-space: nowrap;
2351
- }
2352
- .hsk-cb-sidebar-new {
2353
- display: flex;
2354
- align-items: center;
2355
- gap: 5px;
2356
- padding: 5px 10px;
2357
- border-radius: 6px;
2358
- border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.1));
2359
- background: none;
2360
- color: var(--hsk-primary, #ff6a33);
2361
- font-size: 11px;
2362
- font-weight: 500;
2363
- cursor: pointer;
2364
- font-family: inherit;
2365
- white-space: nowrap;
2366
- transition: background .15s, border-color .15s;
2367
- }
2368
- .hsk-cb-sidebar-new:hover {
2369
- background: color-mix(in srgb, var(--hsk-primary, #ff6a33) 8%, transparent);
2370
- border-color: var(--hsk-primary, #ff6a33);
2371
- }
2372
- .hsk-cb-sidebar-list {
2373
- flex: 1;
2374
- overflow-y: auto;
2375
- padding: 8px 6px;
2376
- display: flex;
2377
- flex-direction: column;
2378
- gap: 2px;
2379
- scrollbar-width: thin;
2380
- scrollbar-color: rgba(0, 0, 0, .1) transparent;
2381
- }
2382
- .hsk-cb-sidebar-empty {
2383
- display: flex;
2384
- flex-direction: column;
2385
- align-items: center;
2386
- justify-content: center;
2387
- gap: 8px;
2388
- padding: 40px 16px;
2389
- color: var(--hsk-chat-muted, #9aa0a6);
2390
- font-size: 12px;
2391
- text-align: center;
2392
- }
2393
- .hsk-cb-sidebar-session {
2394
- position: relative;
2395
- padding: 9px 10px;
2396
- border-radius: 8px;
2397
- cursor: pointer;
2398
- transition: background .15s;
2399
- min-width: 0;
2400
- }
2401
- .hsk-cb-sidebar-session:hover {
2402
- background: rgba(0, 0, 0, .05);
2403
- }
2404
- .hsk-cb-sidebar-session--active {
2405
- background: color-mix(in srgb, var(--hsk-primary, #ff6a33) 10%, transparent) !important;
2406
- }
2407
- .hsk-cb-sidebar-session-title {
2408
- font-size: 12.5px;
2409
- font-weight: 500;
2410
- color: var(--hsk-chat-text, #1f1f1f);
2411
- white-space: nowrap;
2412
- overflow: hidden;
2413
- text-overflow: ellipsis;
2414
- padding-right: 20px;
2415
- }
2416
- .hsk-cb-sidebar-session-meta {
2417
- font-size: 10.5px;
2418
- color: var(--hsk-chat-muted, #9aa0a6);
2419
- margin-top: 2px;
2420
- }
2421
- .hsk-cb-sidebar-session-del {
2422
- position: absolute;
2423
- top: 6px;
2424
- right: 6px;
2425
- width: 18px;
2426
- height: 18px;
2427
- border: none;
2428
- background: none;
2429
- color: var(--hsk-chat-muted, #9aa0a6);
2430
- font-size: 14px;
2431
- cursor: pointer;
2432
- border-radius: 4px;
2433
- display: flex;
2434
- align-items: center;
2435
- justify-content: center;
2436
- opacity: 0;
2437
- transition: opacity .15s, background .15s;
2438
- }
2439
- .hsk-cb-sidebar-session:hover .hsk-cb-sidebar-session-del {
2440
- opacity: 1;
2441
- }
2442
- .hsk-cb-sidebar-session-del:hover {
2443
- background: rgba(239, 68, 68, .12);
2444
- color: #ef4444;
2445
- }
2446
- .hsk-cb-sidebar-toggle {
2447
- width: 34px;
2448
- height: 34px;
2449
- border-radius: var(--hsk-border-radius, 0px);
2450
- border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.1));
2451
- background: none;
2452
- color: var(--hsk-chat-muted, #5f6368);
2453
- cursor: pointer;
2454
- display: flex;
2455
- align-items: center;
2456
- justify-content: center;
2457
- flex-shrink: 0;
2458
- font-family: inherit;
2459
- transition: all .15s;
2460
- }
2461
- .hsk-cb-sidebar-toggle:hover,
2462
- .hsk-cb-sidebar-toggle--active {
2463
- border-color: var(--hsk-primary, #ff6a33);
2464
- color: var(--hsk-primary, #ff6a33);
2465
- background: color-mix(in srgb, var(--hsk-primary, #ff6a33) 8%, transparent);
2466
- }
2467
2417
  .hsk-cb-main {
2468
2418
  flex: 1;
2469
2419
  min-width: 0;
@@ -2672,47 +2622,17 @@
2672
2622
  background: #f59e0b !important;
2673
2623
  }
2674
2624
  @media (prefers-color-scheme: dark) {
2675
- .hsk-cb-sidebar {
2676
- --hsk-sidebar-bg: #18181a;
2677
- }
2678
2625
  .hsk-action-pill {
2679
2626
  --hsk-pill-bg: rgba(40,40,42,0.85);
2680
2627
  border-color: rgba(255, 255, 255, .1);
2681
2628
  color: var(--hsk-chat-text, #e8eaed);
2682
2629
  }
2683
2630
  }
2684
- [data-hsk-theme=dark] .hsk-cb-sidebar {
2685
- --hsk-sidebar-bg: #18181a;
2686
- }
2687
2631
  [data-hsk-theme=dark] .hsk-action-pill {
2688
2632
  --hsk-pill-bg: rgba(40,40,42,0.85);
2689
2633
  border-color: rgba(255, 255, 255, .1);
2690
2634
  color: var(--hsk-chat-text, #e8eaed);
2691
2635
  }
2692
- [data-hsk-theme=dark] .hsk-cb-sidebar-session-title {
2693
- color: #e8eaed;
2694
- }
2695
- @media (max-width: 600px) {
2696
- .hsk-cb-panel--with-sidebar {
2697
- position: relative;
2698
- }
2699
- .hsk-cb-sidebar {
2700
- position: absolute;
2701
- top: 0;
2702
- left: 0;
2703
- bottom: 0;
2704
- z-index: 10;
2705
- width: 0;
2706
- min-width: 0;
2707
- box-shadow: 4px 0 20px rgba(0, 0, 0, .15);
2708
- border-right: none;
2709
- }
2710
- .hsk-cb-sidebar--open {
2711
- width: 80vw;
2712
- max-width: 280px;
2713
- min-width: unset;
2714
- }
2715
- }
2716
2636
  .hsk-sp-tabs-mobile {
2717
2637
  display: none;
2718
2638
  }
@@ -3379,10 +3299,10 @@
3379
3299
  left: 0;
3380
3300
  min-width: 260px;
3381
3301
  max-width: 340px;
3382
- background: var(--hsk-surface, #232427);
3383
- border: 1px solid var(--hsk-border, rgba(255,255,255,0.08));
3302
+ background: var(--hsk-chat-bg, #ffffff);
3303
+ border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,0.08));
3384
3304
  border-radius: 16px;
3385
- box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
3305
+ box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
3386
3306
  overflow: hidden;
3387
3307
  padding: 6px;
3388
3308
  z-index: 120;
@@ -3410,25 +3330,25 @@
3410
3330
  cursor: pointer;
3411
3331
  padding: 9px 10px;
3412
3332
  transition: background 0.12s;
3413
- color: var(--hsk-text, #e8e8ea);
3333
+ color: var(--hsk-chat-text, #1f1f1f);
3414
3334
  font-family: inherit;
3415
3335
  }
3416
3336
  .hsk-kiku-picker-item:hover {
3417
- background: rgba(255, 255, 255, 0.07);
3337
+ background: var(--hsk-chat-input-bg, #f1f3f4);
3418
3338
  }
3419
3339
  .hsk-kiku-picker-item:active {
3420
- background: rgba(255, 255, 255, 0.11);
3340
+ background: var(--hsk-chat-divide, rgba(0,0,0,0.08));
3421
3341
  }
3422
3342
  .hsk-kiku-picker-icon {
3423
3343
  width: 22px;
3424
3344
  height: 22px;
3425
3345
  border-radius: 50%;
3426
- background: rgba(255, 255, 255, 0.06);
3346
+ background: var(--hsk-chat-input-bg, #f1f3f4);
3427
3347
  display: flex;
3428
3348
  align-items: center;
3429
3349
  justify-content: center;
3430
3350
  flex-shrink: 0;
3431
- color: var(--hsk-text-muted, #9a9a9e);
3351
+ color: var(--hsk-chat-muted, #5f6368);
3432
3352
  overflow: hidden;
3433
3353
  }
3434
3354
  .hsk-kiku-picker-icon img {
@@ -3437,7 +3357,8 @@
3437
3357
  object-fit: cover;
3438
3358
  }
3439
3359
  .hsk-kiku-picker-icon--accent {
3440
- color: var(--hsk-primary, #7c5cfc);
3360
+ background: color-mix(in srgb, var(--hsk-primary, #ff6a33) 12%, transparent);
3361
+ color: var(--hsk-primary, #ff6a33);
3441
3362
  }
3442
3363
  .hsk-kiku-picker-item-name {
3443
3364
  font-size: 13.5px;
@@ -3445,24 +3366,29 @@
3445
3366
  white-space: nowrap;
3446
3367
  overflow: hidden;
3447
3368
  text-overflow: ellipsis;
3448
- color: var(--hsk-text, #e8e8ea);
3369
+ color: var(--hsk-chat-text, #1f1f1f);
3449
3370
  flex: 1;
3450
3371
  min-width: 0;
3451
3372
  }
3452
3373
  .hsk-kiku-picker-item-price {
3453
3374
  font-size: 12px;
3454
- color: var(--hsk-text-muted, #9a9a9e);
3375
+ color: var(--hsk-chat-muted, #5f6368);
3455
3376
  flex-shrink: 0;
3456
3377
  }
3378
+ @media (prefers-color-scheme: dark) {
3379
+ .hsk-kiku-picker {
3380
+ box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
3381
+ }
3382
+ }
3457
3383
  .hsk-kiku-badge {
3458
3384
  display: inline-flex;
3459
3385
  align-items: center;
3460
3386
  font-size: 10px;
3461
3387
  font-weight: 700;
3462
3388
  letter-spacing: 0.04em;
3463
- color: var(--hsk-primary, #7c5cfc);
3464
- background: color-mix(in srgb, var(--hsk-primary, #7c5cfc) 16%, transparent);
3465
- border: 1px solid color-mix(in srgb, var(--hsk-primary, #7c5cfc) 30%, transparent);
3389
+ color: #fff;
3390
+ background: rgba(255, 255, 255, 0.16);
3391
+ border: 1px solid rgba(255, 255, 255, 0.35);
3466
3392
  padding: 1px 7px;
3467
3393
  border-radius: 20px;
3468
3394
  margin-right: 6px;
@@ -3470,31 +3396,6 @@
3470
3396
  position: relative;
3471
3397
  top: -1px;
3472
3398
  }
3473
- .hsk-light .hsk-kiku-picker {
3474
- background: #ffffff;
3475
- border-color: rgba(0, 0, 0, 0.08);
3476
- box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
3477
- }
3478
- .hsk-light .hsk-kiku-picker-item {
3479
- color: #1a1a1a;
3480
- }
3481
- .hsk-light .hsk-kiku-picker-item:hover {
3482
- background: rgba(0, 0, 0, 0.045);
3483
- }
3484
- .hsk-light .hsk-kiku-picker-item:active {
3485
- background: rgba(0, 0, 0, 0.08);
3486
- }
3487
- .hsk-light .hsk-kiku-picker-item-name {
3488
- color: #1a1a1a;
3489
- }
3490
- .hsk-light .hsk-kiku-picker-icon {
3491
- background: rgba(0, 0, 0, 0.045);
3492
- color: #6b6b70;
3493
- }
3494
- .hsk-light .hsk-kiku-picker-icon--accent {
3495
- background: color-mix(in srgb, var(--hsk-primary, #7c5cfc) 12%, transparent);
3496
- color: var(--hsk-primary, #7c5cfc);
3497
- }
3498
3399
  .hsk-markdown-img,
3499
3400
  .hsk-cb-user-img-thumb,
3500
3401
  .hsk-cb-source .hsk-cb-src-imgwrap img {