@speechos/client 0.2.10 → 0.2.11

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/index.js CHANGED
@@ -256,6 +256,17 @@ class FormDetector {
256
256
  document.addEventListener("touchstart", this.touchHandler, true);
257
257
  document.addEventListener("mousedown", this.mouseDownHandler, true);
258
258
  this.isActive = true;
259
+ // Check for already-focused form field (e.g., page loaded with autofocus)
260
+ const activeElement = document.activeElement;
261
+ if (isFormField(activeElement)) {
262
+ console.log("[SpeechOS] FormDetector: found initially focused form field", {
263
+ element: activeElement,
264
+ tagName: activeElement?.tagName,
265
+ });
266
+ state.setFocusedElement(activeElement);
267
+ state.show();
268
+ events.emit("form:focus", { element: activeElement });
269
+ }
259
270
  }
260
271
  /**
261
272
  * Stop detecting form field focus events
@@ -1725,9 +1736,9 @@ const themeStyles = i$4 `
1725
1736
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
1726
1737
 
1727
1738
  /* Color tokens */
1728
- --speechos-primary: #10B981;
1729
- --speechos-primary-hover: #059669;
1730
- --speechos-primary-active: #047857;
1739
+ --speechos-primary: #0d9488;
1740
+ --speechos-primary-hover: #0f766e;
1741
+ --speechos-primary-active: #115e59;
1731
1742
 
1732
1743
  --speechos-bg: #ffffff;
1733
1744
  --speechos-bg-hover: #f9fafb;
@@ -2292,45 +2303,51 @@ let SpeechOSMicButton = class SpeechOSMicButton extends i$1 {
2292
2303
  width: 56px;
2293
2304
  height: 56px;
2294
2305
  border-radius: var(--speechos-radius-full);
2295
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
2306
+ background: #10b981;
2296
2307
  border: none;
2297
2308
  cursor: pointer;
2298
2309
  display: flex;
2299
2310
  align-items: center;
2300
2311
  justify-content: center;
2301
2312
  color: white;
2302
- box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
2303
- transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2313
+ box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
2314
+ transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
2304
2315
  position: relative;
2305
2316
  overflow: hidden;
2306
2317
  }
2307
2318
 
2308
2319
  .mic-button:hover {
2320
+ background: #059669;
2309
2321
  transform: scale(1.05);
2310
- box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
2322
+ box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
2311
2323
  }
2312
2324
 
2313
2325
  .mic-button:active {
2314
2326
  transform: scale(0.98);
2315
2327
  }
2316
2328
 
2329
+ .mic-button:focus {
2330
+ outline: none;
2331
+ box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4), 0 4px 16px rgba(16, 185, 129, 0.35);
2332
+ }
2333
+
2317
2334
  /* Expanded state - bubbles visible */
2318
2335
  .mic-button.expanded {
2319
- background: linear-gradient(135deg, #059669 0%, #047857 100%);
2336
+ background: #059669;
2320
2337
  }
2321
2338
 
2322
2339
  /* Connecting state - Siri-style metallic spinner */
2323
2340
  .mic-button.connecting {
2324
2341
  background: radial-gradient(
2325
2342
  circle at 30% 30%,
2326
- #34d399 0%,
2327
- #10b981 40%,
2328
- #059669 70%,
2329
- #047857 100%
2343
+ #2dd4bf 0%,
2344
+ #14b8a6 40%,
2345
+ #0d9488 70%,
2346
+ #0f766e 100%
2330
2347
  );
2331
2348
  cursor: wait;
2332
- box-shadow: 0 0 20px rgba(16, 185, 129, 0.4),
2333
- 0 0 40px rgba(16, 185, 129, 0.2),
2349
+ box-shadow: 0 0 20px rgba(13, 148, 136, 0.4),
2350
+ 0 0 40px rgba(13, 148, 136, 0.2),
2334
2351
  inset 0 0 20px rgba(255, 255, 255, 0.1);
2335
2352
  }
2336
2353
 
@@ -2373,15 +2390,15 @@ let SpeechOSMicButton = class SpeechOSMicButton extends i$1 {
2373
2390
  background: conic-gradient(
2374
2391
  from 0deg,
2375
2392
  transparent 0deg,
2376
- rgba(52, 211, 153, 0.1) 30deg,
2377
- rgba(16, 185, 129, 0.8) 90deg,
2393
+ rgba(45, 212, 191, 0.1) 30deg,
2394
+ rgba(13, 148, 136, 0.8) 90deg,
2378
2395
  rgba(255, 255, 255, 0.95) 120deg,
2379
- rgba(52, 211, 153, 0.9) 150deg,
2380
- rgba(16, 185, 129, 0.6) 180deg,
2381
- rgba(5, 150, 105, 0.3) 210deg,
2396
+ rgba(45, 212, 191, 0.9) 150deg,
2397
+ rgba(13, 148, 136, 0.6) 180deg,
2398
+ rgba(15, 118, 110, 0.3) 210deg,
2382
2399
  transparent 270deg,
2383
- rgba(110, 231, 183, 0.2) 300deg,
2384
- rgba(16, 185, 129, 0.5) 330deg,
2400
+ rgba(94, 234, 212, 0.2) 300deg,
2401
+ rgba(13, 148, 136, 0.5) 330deg,
2385
2402
  transparent 360deg
2386
2403
  );
2387
2404
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
@@ -2402,13 +2419,13 @@ let SpeechOSMicButton = class SpeechOSMicButton extends i$1 {
2402
2419
  background: conic-gradient(
2403
2420
  from 180deg,
2404
2421
  transparent 0deg,
2405
- rgba(167, 243, 208, 0.3) 60deg,
2422
+ rgba(153, 246, 228, 0.3) 60deg,
2406
2423
  rgba(255, 255, 255, 0.7) 90deg,
2407
- rgba(110, 231, 183, 0.5) 120deg,
2424
+ rgba(94, 234, 212, 0.5) 120deg,
2408
2425
  transparent 180deg,
2409
- rgba(52, 211, 153, 0.2) 240deg,
2426
+ rgba(45, 212, 191, 0.2) 240deg,
2410
2427
  rgba(255, 255, 255, 0.5) 270deg,
2411
- rgba(16, 185, 129, 0.4) 300deg,
2428
+ rgba(13, 148, 136, 0.4) 300deg,
2412
2429
  transparent 360deg
2413
2430
  );
2414
2431
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
@@ -2449,8 +2466,8 @@ let SpeechOSMicButton = class SpeechOSMicButton extends i$1 {
2449
2466
  border-radius: 50%;
2450
2467
  background: radial-gradient(
2451
2468
  circle,
2452
- rgba(16, 185, 129, 0.4) 0%,
2453
- rgba(16, 185, 129, 0.15) 40%,
2469
+ rgba(13, 148, 136, 0.4) 0%,
2470
+ rgba(13, 148, 136, 0.15) 40%,
2454
2471
  transparent 70%
2455
2472
  );
2456
2473
  animation: siri-glow-pulse 2s ease-in-out infinite;
@@ -3870,15 +3887,15 @@ const modalLayoutStyles = i$4 `
3870
3887
  }
3871
3888
 
3872
3889
  .modal {
3873
- background: #1a1d24;
3890
+ background: #f5f5f4;
3874
3891
  border-radius: 16px;
3875
3892
  width: 90%;
3876
3893
  max-width: 580px;
3877
3894
  height: min(560px, 85vh);
3878
3895
  display: flex;
3879
3896
  flex-direction: column;
3880
- box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4),
3881
- 0 0 0 1px rgba(255, 255, 255, 0.05);
3897
+ box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15),
3898
+ 0 0 0 1px rgba(0, 0, 0, 0.05);
3882
3899
  transform: scale(0.95) translateY(10px);
3883
3900
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
3884
3901
  pointer-events: auto;
@@ -3903,16 +3920,16 @@ const modalLayoutStyles = i$4 `
3903
3920
  align-items: center;
3904
3921
  justify-content: space-between;
3905
3922
  padding: 16px 20px;
3906
- border-bottom: 1px solid rgba(255, 255, 255, 0.06);
3907
- background: rgba(0, 0, 0, 0.2);
3923
+ border-bottom: 1px solid #e5e5e5;
3924
+ background: #ffffff;
3908
3925
  }
3909
3926
 
3910
3927
  .modal-title {
3911
3928
  font-size: 17px;
3912
3929
  font-weight: 600;
3913
- color: white;
3930
+ color: #171717;
3914
3931
  margin: 0;
3915
- letter-spacing: -0.01em;
3932
+ letter-spacing: -0.02em;
3916
3933
  }
3917
3934
 
3918
3935
  .modal-logo {
@@ -3925,7 +3942,7 @@ const modalLayoutStyles = i$4 `
3925
3942
  width: 28px;
3926
3943
  height: 28px;
3927
3944
  border-radius: 8px;
3928
- background: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%);
3945
+ background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
3929
3946
  display: flex;
3930
3947
  align-items: center;
3931
3948
  justify-content: center;
@@ -3940,13 +3957,13 @@ const modalLayoutStyles = i$4 `
3940
3957
  .logo-text {
3941
3958
  font-size: 17px;
3942
3959
  font-weight: 500;
3943
- color: white;
3960
+ color: #171717;
3944
3961
  letter-spacing: -0.02em;
3945
3962
  }
3946
3963
 
3947
3964
  .logo-os {
3948
3965
  font-weight: 700;
3949
- background: linear-gradient(135deg, #34d399 0%, #a78bfa 100%);
3966
+ background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
3950
3967
  -webkit-background-clip: text;
3951
3968
  -webkit-text-fill-color: transparent;
3952
3969
  background-clip: text;
@@ -3962,13 +3979,22 @@ const modalLayoutStyles = i$4 `
3962
3979
  display: flex;
3963
3980
  align-items: center;
3964
3981
  justify-content: center;
3965
- color: rgba(255, 255, 255, 0.5);
3982
+ color: #737373;
3966
3983
  transition: all 0.15s ease;
3967
3984
  }
3968
3985
 
3969
3986
  .close-button:hover {
3970
- background: rgba(255, 255, 255, 0.08);
3971
- color: white;
3987
+ background: #f5f5f4;
3988
+ color: #171717;
3989
+ }
3990
+
3991
+ .close-button:focus {
3992
+ outline: none;
3993
+ box-shadow: 0 0 0 2px #0d9488, 0 0 0 4px rgba(13, 148, 136, 0.2);
3994
+ }
3995
+
3996
+ .close-button:active {
3997
+ transform: scale(0.95);
3972
3998
  }
3973
3999
 
3974
4000
  .modal-body {
@@ -3980,8 +4006,8 @@ const modalLayoutStyles = i$4 `
3980
4006
  .sidebar {
3981
4007
  width: 110px;
3982
4008
  flex-shrink: 0;
3983
- background: rgba(0, 0, 0, 0.25);
3984
- border-right: 1px solid rgba(255, 255, 255, 0.06);
4009
+ background: #fafaf9;
4010
+ border-right: 1px solid #e5e5e5;
3985
4011
  padding: 12px 8px;
3986
4012
  display: flex;
3987
4013
  flex-direction: column;
@@ -4010,19 +4036,25 @@ const modalLayoutStyles = i$4 `
4010
4036
  border-radius: 10px;
4011
4037
  background: transparent;
4012
4038
  cursor: pointer;
4013
- color: rgba(255, 255, 255, 0.5);
4039
+ color: #525252;
4014
4040
  transition: all 0.15s ease;
4015
4041
  position: relative;
4016
4042
  }
4017
4043
 
4018
4044
  .sidebar-item:hover {
4019
- background: rgba(255, 255, 255, 0.05);
4020
- color: rgba(255, 255, 255, 0.8);
4045
+ background: #ffffff;
4046
+ color: #171717;
4047
+ }
4048
+
4049
+ .sidebar-item:focus {
4050
+ outline: none;
4051
+ box-shadow: inset 0 0 0 2px rgba(13, 148, 136, 0.4);
4021
4052
  }
4022
4053
 
4023
4054
  .sidebar-item.active {
4024
- background: rgba(16, 185, 129, 0.12);
4025
- color: #34d399;
4055
+ background: rgba(15, 118, 110, 0.12);
4056
+ color: #0f766e;
4057
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
4026
4058
  }
4027
4059
 
4028
4060
  .sidebar-item.active::before {
@@ -4033,7 +4065,7 @@ const modalLayoutStyles = i$4 `
4033
4065
  transform: translateY(-50%);
4034
4066
  width: 3px;
4035
4067
  height: 24px;
4036
- background: #34d399;
4068
+ background: #0f766e;
4037
4069
  border-radius: 0 3px 3px 0;
4038
4070
  }
4039
4071
 
@@ -4076,14 +4108,14 @@ const tabContentStyles = i$4 `
4076
4108
  .section-title {
4077
4109
  font-size: 15px;
4078
4110
  font-weight: 600;
4079
- color: white;
4111
+ color: #171717;
4080
4112
  margin: 0 0 6px 0;
4081
- letter-spacing: -0.01em;
4113
+ letter-spacing: -0.02em;
4082
4114
  }
4083
4115
 
4084
4116
  .section-description {
4085
4117
  font-size: 13px;
4086
- color: rgba(255, 255, 255, 0.5);
4118
+ color: #525252;
4087
4119
  line-height: 1.5;
4088
4120
  margin: 0;
4089
4121
  }
@@ -4091,7 +4123,7 @@ const tabContentStyles = i$4 `
4091
4123
  .empty-state {
4092
4124
  text-align: center;
4093
4125
  padding: 40px 20px;
4094
- color: rgba(255, 255, 255, 0.5);
4126
+ color: #737373;
4095
4127
  }
4096
4128
 
4097
4129
  .empty-state-icon {
@@ -4103,7 +4135,7 @@ const tabContentStyles = i$4 `
4103
4135
  font-size: 15px;
4104
4136
  font-weight: 500;
4105
4137
  margin-bottom: 8px;
4106
- color: rgba(255, 255, 255, 0.7);
4138
+ color: #525252;
4107
4139
  }
4108
4140
 
4109
4141
  .empty-state-text {
@@ -4121,7 +4153,7 @@ const tabContentStyles = i$4 `
4121
4153
  display: flex;
4122
4154
  align-items: center;
4123
4155
  justify-content: center;
4124
- color: rgba(255, 255, 255, 0.35);
4156
+ color: #737373;
4125
4157
  transition: all 0.15s ease;
4126
4158
  }
4127
4159
 
@@ -4159,20 +4191,30 @@ const formStyles = i$4 `
4159
4191
  align-items: center;
4160
4192
  gap: 6px;
4161
4193
  padding: 10px 16px;
4162
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
4194
+ background: #0d9488;
4163
4195
  border: none;
4164
4196
  border-radius: 8px;
4165
4197
  color: white;
4166
4198
  font-size: 13px;
4167
4199
  font-weight: 600;
4200
+ letter-spacing: 0.01em;
4168
4201
  cursor: pointer;
4169
- transition: all 0.2s ease;
4170
- box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
4202
+ transition: all 0.15s ease;
4203
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4171
4204
  }
4172
4205
 
4173
4206
  .add-button:hover:not(:disabled) {
4174
- transform: translateY(-1px);
4175
- box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
4207
+ background: #0f766e;
4208
+ box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
4209
+ }
4210
+
4211
+ .add-button:focus:not(:disabled) {
4212
+ outline: none;
4213
+ box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
4214
+ }
4215
+
4216
+ .add-button:active:not(:disabled) {
4217
+ transform: scale(0.98);
4176
4218
  }
4177
4219
 
4178
4220
  .add-button:disabled {
@@ -4183,7 +4225,7 @@ const formStyles = i$4 `
4183
4225
 
4184
4226
  .count-badge {
4185
4227
  font-size: 12px;
4186
- color: rgba(255, 255, 255, 0.45);
4228
+ color: #737373;
4187
4229
  font-weight: 500;
4188
4230
  }
4189
4231
 
@@ -4195,11 +4237,12 @@ const formStyles = i$4 `
4195
4237
  }
4196
4238
 
4197
4239
  .add-form {
4198
- background: rgba(255, 255, 255, 0.04);
4199
- border: 1px solid rgba(255, 255, 255, 0.08);
4240
+ background: #ffffff;
4241
+ border: 1px solid #e5e5e5;
4200
4242
  border-radius: 12px;
4201
4243
  padding: 16px;
4202
4244
  margin-bottom: 16px;
4245
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
4203
4246
  }
4204
4247
 
4205
4248
  .form-group {
@@ -4214,7 +4257,7 @@ const formStyles = i$4 `
4214
4257
  display: block;
4215
4258
  font-size: 12px;
4216
4259
  font-weight: 600;
4217
- color: rgba(255, 255, 255, 0.7);
4260
+ color: #525252;
4218
4261
  margin-bottom: 8px;
4219
4262
  text-transform: uppercase;
4220
4263
  letter-spacing: 0.04em;
@@ -4223,10 +4266,10 @@ const formStyles = i$4 `
4223
4266
  .form-input {
4224
4267
  width: 100%;
4225
4268
  padding: 12px 14px;
4226
- background: rgba(0, 0, 0, 0.3);
4227
- border: 1px solid rgba(255, 255, 255, 0.08);
4269
+ background: #ffffff;
4270
+ border: 1px solid #d4d4d4;
4228
4271
  border-radius: 8px;
4229
- color: white;
4272
+ color: #171717;
4230
4273
  font-size: 14px;
4231
4274
  font-family: inherit;
4232
4275
  transition: all 0.15s ease;
@@ -4235,12 +4278,12 @@ const formStyles = i$4 `
4235
4278
 
4236
4279
  .form-input:focus {
4237
4280
  outline: none;
4238
- border-color: #34d399;
4239
- box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
4281
+ border-color: #0d9488;
4282
+ box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
4240
4283
  }
4241
4284
 
4242
4285
  .form-input::placeholder {
4243
- color: rgba(255, 255, 255, 0.3);
4286
+ color: #a3a3a3;
4244
4287
  }
4245
4288
 
4246
4289
  .form-input.error {
@@ -4264,7 +4307,7 @@ const formStyles = i$4 `
4264
4307
 
4265
4308
  .char-count {
4266
4309
  font-size: 11px;
4267
- color: rgba(255, 255, 255, 0.4);
4310
+ color: #737373;
4268
4311
  font-variant-numeric: tabular-nums;
4269
4312
  }
4270
4313
 
@@ -4298,26 +4341,35 @@ const formStyles = i$4 `
4298
4341
  }
4299
4342
 
4300
4343
  .form-btn.cancel {
4301
- background: transparent;
4302
- border: 1px solid rgba(255, 255, 255, 0.15);
4303
- color: rgba(255, 255, 255, 0.7);
4344
+ background: #ffffff;
4345
+ border: 1px solid #d4d4d4;
4346
+ color: #525252;
4304
4347
  }
4305
4348
 
4306
4349
  .form-btn.cancel:hover {
4307
- background: rgba(255, 255, 255, 0.05);
4308
- border-color: rgba(255, 255, 255, 0.25);
4350
+ background: #fafaf9;
4351
+ border-color: #a3a3a3;
4309
4352
  }
4310
4353
 
4311
4354
  .form-btn.save {
4312
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
4355
+ background: #0d9488;
4313
4356
  border: none;
4314
4357
  color: white;
4315
- box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
4358
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4316
4359
  }
4317
4360
 
4318
4361
  .form-btn.save:hover:not(:disabled) {
4319
- transform: translateY(-1px);
4320
- box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
4362
+ background: #0f766e;
4363
+ box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
4364
+ }
4365
+
4366
+ .form-btn.save:focus:not(:disabled) {
4367
+ outline: none;
4368
+ box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
4369
+ }
4370
+
4371
+ .form-btn.save:active:not(:disabled) {
4372
+ transform: scale(0.98);
4321
4373
  }
4322
4374
 
4323
4375
  .form-btn.save:disabled {
@@ -4351,16 +4403,17 @@ let SpeechOSHistoryTab = class SpeechOSHistoryTab extends i$1 {
4351
4403
  }
4352
4404
 
4353
4405
  .transcript-item {
4354
- background: rgba(255, 255, 255, 0.04);
4355
- border: 1px solid rgba(255, 255, 255, 0.06);
4406
+ background: #ffffff;
4407
+ border: 1px solid #e5e5e5;
4356
4408
  border-radius: 10px;
4357
4409
  padding: 12px 14px;
4358
4410
  transition: all 0.15s ease;
4411
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
4359
4412
  }
4360
4413
 
4361
4414
  .transcript-item:hover {
4362
- background: rgba(255, 255, 255, 0.06);
4363
- border-color: rgba(255, 255, 255, 0.1);
4415
+ border-color: #d4d4d4;
4416
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
4364
4417
  }
4365
4418
 
4366
4419
  .transcript-header {
@@ -4383,28 +4436,28 @@ let SpeechOSHistoryTab = class SpeechOSHistoryTab extends i$1 {
4383
4436
  }
4384
4437
 
4385
4438
  .transcript-badge.dictate {
4386
- background: rgba(16, 185, 129, 0.15);
4387
- color: #34d399;
4439
+ background: rgba(13, 148, 136, 0.18);
4440
+ color: #0f766e;
4388
4441
  }
4389
4442
 
4390
4443
  .transcript-badge.edit {
4391
- background: rgba(139, 92, 246, 0.15);
4392
- color: #a78bfa;
4444
+ background: rgba(139, 92, 246, 0.18);
4445
+ color: #7c3aed;
4393
4446
  }
4394
4447
 
4395
4448
  .transcript-badge.command {
4396
- background: rgba(245, 158, 11, 0.15);
4397
- color: #fbbf24;
4449
+ background: rgba(245, 158, 11, 0.18);
4450
+ color: #b45309;
4398
4451
  }
4399
4452
 
4400
4453
  .transcript-time {
4401
4454
  font-size: 12px;
4402
- color: rgba(255, 255, 255, 0.35);
4455
+ color: #737373;
4403
4456
  }
4404
4457
 
4405
4458
  .transcript-text {
4406
4459
  font-size: 14px;
4407
- color: rgba(255, 255, 255, 0.85);
4460
+ color: #171717;
4408
4461
  line-height: 1.5;
4409
4462
  word-break: break-word;
4410
4463
  display: -webkit-box;
@@ -4419,7 +4472,7 @@ let SpeechOSHistoryTab = class SpeechOSHistoryTab extends i$1 {
4419
4472
  gap: 8px;
4420
4473
  margin-top: 10px;
4421
4474
  padding-top: 10px;
4422
- border-top: 1px solid rgba(255, 255, 255, 0.06);
4475
+ border-top: 1px solid #e5e5e5;
4423
4476
  }
4424
4477
 
4425
4478
  .transcript-action-btn {
@@ -4428,23 +4481,23 @@ let SpeechOSHistoryTab = class SpeechOSHistoryTab extends i$1 {
4428
4481
  gap: 6px;
4429
4482
  padding: 6px 10px;
4430
4483
  border-radius: 6px;
4431
- background: rgba(255, 255, 255, 0.06);
4484
+ background: rgba(0, 0, 0, 0.08);
4432
4485
  border: none;
4433
4486
  cursor: pointer;
4434
4487
  font-size: 12px;
4435
4488
  font-weight: 500;
4436
- color: rgba(255, 255, 255, 0.6);
4489
+ color: #404040;
4437
4490
  transition: all 0.15s ease;
4438
4491
  }
4439
4492
 
4440
4493
  .transcript-action-btn:hover {
4441
- background: rgba(255, 255, 255, 0.1);
4442
- color: rgba(255, 255, 255, 0.9);
4494
+ background: rgba(0, 0, 0, 0.12);
4495
+ color: #171717;
4443
4496
  }
4444
4497
 
4445
4498
  .transcript-action-btn.copied {
4446
- background: rgba(16, 185, 129, 0.2);
4447
- color: #34d399;
4499
+ background: rgba(13, 148, 136, 0.2);
4500
+ color: #0d9488;
4448
4501
  }
4449
4502
 
4450
4503
  .transcript-action-btn.delete:hover {
@@ -4458,9 +4511,9 @@ let SpeechOSHistoryTab = class SpeechOSHistoryTab extends i$1 {
4458
4511
  margin-top: 16px;
4459
4512
  padding: 10px;
4460
4513
  background: rgba(239, 68, 68, 0.1);
4461
- border: 1px solid rgba(239, 68, 68, 0.15);
4514
+ border: 1px solid rgba(239, 68, 68, 0.2);
4462
4515
  border-radius: 8px;
4463
- color: #f87171;
4516
+ color: #dc2626;
4464
4517
  font-size: 13px;
4465
4518
  font-weight: 500;
4466
4519
  cursor: pointer;
@@ -4469,18 +4522,18 @@ let SpeechOSHistoryTab = class SpeechOSHistoryTab extends i$1 {
4469
4522
 
4470
4523
  .clear-all-button:hover {
4471
4524
  background: rgba(239, 68, 68, 0.18);
4472
- border-color: rgba(239, 68, 68, 0.25);
4525
+ border-color: rgba(239, 68, 68, 0.3);
4473
4526
  }
4474
4527
 
4475
4528
  .command-matched {
4476
4529
  font-size: 12px;
4477
- color: rgba(255, 255, 255, 0.5);
4530
+ color: #525252;
4478
4531
  margin-top: 6px;
4479
4532
  }
4480
4533
 
4481
4534
  .command-matched code {
4482
4535
  background: rgba(245, 158, 11, 0.15);
4483
- color: #fbbf24;
4536
+ color: #d97706;
4484
4537
  padding: 2px 6px;
4485
4538
  border-radius: 4px;
4486
4539
  font-family: monospace;
@@ -4668,21 +4721,21 @@ let SpeechOSHelpTab = class SpeechOSHelpTab extends i$1 {
4668
4721
  gap: 8px;
4669
4722
  font-size: 15px;
4670
4723
  font-weight: 600;
4671
- color: white;
4724
+ color: #171717;
4672
4725
  margin-bottom: 10px;
4673
4726
  }
4674
4727
 
4675
4728
  .help-title.dictate {
4676
- color: #34d399;
4729
+ color: #0f766e;
4677
4730
  }
4678
4731
 
4679
4732
  .help-title.edit {
4680
- color: #a78bfa;
4733
+ color: #7c3aed;
4681
4734
  }
4682
4735
 
4683
4736
  .help-text {
4684
4737
  font-size: 13px;
4685
- color: rgba(255, 255, 255, 0.6);
4738
+ color: #525252;
4686
4739
  line-height: 1.6;
4687
4740
  margin-bottom: 10px;
4688
4741
  }
@@ -4699,17 +4752,17 @@ let SpeechOSHelpTab = class SpeechOSHelpTab extends i$1 {
4699
4752
  }
4700
4753
 
4701
4754
  .help-example {
4702
- background: rgba(255, 255, 255, 0.04);
4703
- border: 1px solid rgba(255, 255, 255, 0.06);
4755
+ background: #ffffff;
4756
+ border: 1px solid #e5e5e5;
4704
4757
  border-radius: 6px;
4705
4758
  padding: 8px 12px;
4706
4759
  font-size: 12px;
4707
- color: rgba(255, 255, 255, 0.5);
4760
+ color: #525252;
4708
4761
  font-style: italic;
4709
4762
  }
4710
4763
 
4711
4764
  .help-title.languages {
4712
- background: linear-gradient(135deg, #34d399 0%, #a78bfa 100%);
4765
+ background: linear-gradient(135deg, #0f766e 0%, #1d4ed8 100%);
4713
4766
  -webkit-background-clip: text;
4714
4767
  -webkit-text-fill-color: transparent;
4715
4768
  background-clip: text;
@@ -4787,7 +4840,7 @@ let SpeechOSAboutTab = class SpeechOSAboutTab extends i$1 {
4787
4840
  width: 36px;
4788
4841
  height: 36px;
4789
4842
  border-radius: 10px;
4790
- background: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%);
4843
+ background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
4791
4844
  display: flex;
4792
4845
  align-items: center;
4793
4846
  justify-content: center;
@@ -4802,13 +4855,13 @@ let SpeechOSAboutTab = class SpeechOSAboutTab extends i$1 {
4802
4855
  .about-logo-text {
4803
4856
  font-size: 22px;
4804
4857
  font-weight: 500;
4805
- color: white;
4858
+ color: #171717;
4806
4859
  letter-spacing: -0.02em;
4807
4860
  }
4808
4861
 
4809
4862
  .logo-os {
4810
4863
  font-weight: 700;
4811
- background: linear-gradient(135deg, #34d399 0%, #a78bfa 100%);
4864
+ background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
4812
4865
  -webkit-background-clip: text;
4813
4866
  -webkit-text-fill-color: transparent;
4814
4867
  background-clip: text;
@@ -4816,7 +4869,7 @@ let SpeechOSAboutTab = class SpeechOSAboutTab extends i$1 {
4816
4869
 
4817
4870
  .about-description {
4818
4871
  font-size: 14px;
4819
- color: rgba(255, 255, 255, 0.65);
4872
+ color: #525252;
4820
4873
  line-height: 1.7;
4821
4874
  margin-bottom: 24px;
4822
4875
  }
@@ -4834,19 +4887,29 @@ let SpeechOSAboutTab = class SpeechOSAboutTab extends i$1 {
4834
4887
  align-items: center;
4835
4888
  gap: 8px;
4836
4889
  padding: 12px 18px;
4837
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
4890
+ background: #0d9488;
4838
4891
  border-radius: 10px;
4839
4892
  color: white;
4840
4893
  font-size: 14px;
4841
4894
  font-weight: 600;
4895
+ letter-spacing: 0.01em;
4842
4896
  text-decoration: none;
4843
- transition: all 0.2s ease;
4844
- box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
4897
+ transition: all 0.15s ease;
4898
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4845
4899
  }
4846
4900
 
4847
4901
  .about-link:hover {
4848
- transform: translateY(-1px);
4849
- box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
4902
+ background: #0f766e;
4903
+ box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
4904
+ }
4905
+
4906
+ .about-link:focus {
4907
+ outline: none;
4908
+ box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
4909
+ }
4910
+
4911
+ .about-link:active {
4912
+ transform: scale(0.98);
4850
4913
  }
4851
4914
  `,
4852
4915
  ]; }
@@ -4926,20 +4989,21 @@ let SpeechOSAudioLevelMeter = class SpeechOSAudioLevelMeter extends i$1 {
4926
4989
  gap: 3px;
4927
4990
  height: 32px;
4928
4991
  padding: 8px 12px;
4929
- background: rgba(0, 0, 0, 0.2);
4992
+ background: #ffffff;
4993
+ border: 2px solid #e5e5e5;
4930
4994
  border-radius: 8px;
4931
4995
  }
4932
4996
 
4933
4997
  .meter-bar {
4934
4998
  width: 6px;
4935
4999
  min-height: 4px;
4936
- background: rgba(255, 255, 255, 0.2);
5000
+ background: #d4d4d4;
4937
5001
  border-radius: 2px;
4938
5002
  transition: height 50ms ease-out, background 100ms ease;
4939
5003
  }
4940
5004
 
4941
5005
  .meter-bar.active {
4942
- background: var(--speechos-primary);
5006
+ background: #10b981;
4943
5007
  }
4944
5008
 
4945
5009
  .meter-inactive {
@@ -4948,14 +5012,15 @@ let SpeechOSAudioLevelMeter = class SpeechOSAudioLevelMeter extends i$1 {
4948
5012
  justify-content: center;
4949
5013
  height: 32px;
4950
5014
  padding: 8px 12px;
4951
- background: rgba(0, 0, 0, 0.2);
5015
+ background: #ffffff;
5016
+ border: 2px solid #e5e5e5;
4952
5017
  border-radius: 8px;
4953
- color: rgba(255, 255, 255, 0.4);
5018
+ color: #737373;
4954
5019
  font-size: 13px;
4955
5020
  }
4956
5021
 
4957
5022
  .meter-error {
4958
- color: #f87171;
5023
+ color: #dc2626;
4959
5024
  }
4960
5025
  `,
4961
5026
  ]; }
@@ -5152,18 +5217,18 @@ let SpeechOSSettingsTab = class SpeechOSSettingsTab extends i$1 {
5152
5217
  }
5153
5218
 
5154
5219
  .settings-section-icon {
5155
- color: #34d399;
5220
+ color: #0d9488;
5156
5221
  }
5157
5222
 
5158
5223
  .settings-section-title {
5159
5224
  font-size: 14px;
5160
5225
  font-weight: 600;
5161
- color: white;
5226
+ color: #171717;
5162
5227
  }
5163
5228
 
5164
5229
  .settings-section-description {
5165
5230
  font-size: 13px;
5166
- color: rgba(255, 255, 255, 0.45);
5231
+ color: #525252;
5167
5232
  line-height: 1.5;
5168
5233
  margin-bottom: 14px;
5169
5234
  }
@@ -5192,10 +5257,10 @@ let SpeechOSSettingsTab = class SpeechOSSettingsTab extends i$1 {
5192
5257
  .settings-select {
5193
5258
  width: 100%;
5194
5259
  padding: 12px 40px 12px 14px;
5195
- background: rgba(0, 0, 0, 0.3);
5196
- border: 1px solid rgba(255, 255, 255, 0.08);
5260
+ background: #ffffff;
5261
+ border: 1px solid #d4d4d4;
5197
5262
  border-radius: 10px;
5198
- color: white;
5263
+ color: #171717;
5199
5264
  font-size: 14px;
5200
5265
  font-family: inherit;
5201
5266
  cursor: pointer;
@@ -5205,19 +5270,19 @@ let SpeechOSSettingsTab = class SpeechOSSettingsTab extends i$1 {
5205
5270
  }
5206
5271
 
5207
5272
  .settings-select:hover {
5208
- border-color: rgba(255, 255, 255, 0.15);
5209
- background: rgba(0, 0, 0, 0.4);
5273
+ border-color: #a3a3a3;
5274
+ background: #ffffff;
5210
5275
  }
5211
5276
 
5212
5277
  .settings-select:focus {
5213
5278
  outline: none;
5214
- border-color: #34d399;
5215
- box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
5279
+ border-color: #0d9488;
5280
+ box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
5216
5281
  }
5217
5282
 
5218
5283
  .settings-select option {
5219
- background: #1a1d24;
5220
- color: white;
5284
+ background: #ffffff;
5285
+ color: #171717;
5221
5286
  padding: 8px;
5222
5287
  }
5223
5288
 
@@ -5227,8 +5292,8 @@ let SpeechOSSettingsTab = class SpeechOSSettingsTab extends i$1 {
5227
5292
  }
5228
5293
 
5229
5294
  .settings-select:disabled:hover {
5230
- border-color: rgba(255, 255, 255, 0.08);
5231
- background: rgba(0, 0, 0, 0.3);
5295
+ border-color: #d4d4d4;
5296
+ background: #ffffff;
5232
5297
  }
5233
5298
 
5234
5299
  .settings-select-arrow {
@@ -5237,12 +5302,12 @@ let SpeechOSSettingsTab = class SpeechOSSettingsTab extends i$1 {
5237
5302
  top: 50%;
5238
5303
  transform: translateY(-50%);
5239
5304
  pointer-events: none;
5240
- color: rgba(255, 255, 255, 0.4);
5305
+ color: #737373;
5241
5306
  }
5242
5307
 
5243
5308
  .settings-permission-note {
5244
5309
  font-size: 12px;
5245
- color: rgba(255, 255, 255, 0.4);
5310
+ color: #737373;
5246
5311
  margin-top: 10px;
5247
5312
  font-style: italic;
5248
5313
  }
@@ -5252,7 +5317,7 @@ let SpeechOSSettingsTab = class SpeechOSSettingsTab extends i$1 {
5252
5317
  align-items: center;
5253
5318
  gap: 4px;
5254
5319
  font-size: 11px;
5255
- color: #34d399;
5320
+ color: #059669;
5256
5321
  font-weight: 500;
5257
5322
  opacity: 0;
5258
5323
  transition: opacity 0.2s ease;
@@ -5268,28 +5333,34 @@ let SpeechOSSettingsTab = class SpeechOSSettingsTab extends i$1 {
5268
5333
  align-items: center;
5269
5334
  justify-content: space-between;
5270
5335
  padding: 12px 14px;
5271
- background: rgba(0, 0, 0, 0.3);
5272
- border: 1px solid rgba(255, 255, 255, 0.08);
5336
+ background: #ffffff;
5337
+ border: 1px solid #e5e5e5;
5273
5338
  border-radius: 10px;
5339
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
5274
5340
  }
5275
5341
 
5276
5342
  .settings-toggle-label {
5277
5343
  font-size: 14px;
5278
- color: white;
5344
+ color: #171717;
5279
5345
  }
5280
5346
 
5281
5347
  .settings-toggle {
5282
5348
  position: relative;
5283
5349
  width: 44px;
5284
5350
  height: 24px;
5285
- background: rgba(255, 255, 255, 0.1);
5351
+ background: #d4d4d4;
5286
5352
  border-radius: 12px;
5287
5353
  cursor: pointer;
5288
5354
  transition: background 0.2s ease;
5289
5355
  }
5290
5356
 
5291
5357
  .settings-toggle.active {
5292
- background: #34d399;
5358
+ background: #0d9488;
5359
+ }
5360
+
5361
+ .settings-toggle:focus {
5362
+ outline: none;
5363
+ box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
5293
5364
  }
5294
5365
 
5295
5366
  .settings-toggle-knob {
@@ -5647,17 +5718,18 @@ let SpeechOSSnippetsTab = class SpeechOSSnippetsTab extends i$1 {
5647
5718
  }
5648
5719
 
5649
5720
  .snippet-item {
5650
- background: rgba(255, 255, 255, 0.04);
5651
- border: 1px solid rgba(255, 255, 255, 0.06);
5721
+ background: #ffffff;
5722
+ border: 1px solid #e5e5e5;
5652
5723
  border-radius: 10px;
5653
5724
  padding: 14px;
5654
5725
  transition: all 0.15s ease;
5655
5726
  position: relative;
5727
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
5656
5728
  }
5657
5729
 
5658
5730
  .snippet-item:hover {
5659
- background: rgba(255, 255, 255, 0.06);
5660
- border-color: rgba(255, 255, 255, 0.1);
5731
+ border-color: #d4d4d4;
5732
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
5661
5733
  }
5662
5734
 
5663
5735
  .snippet-trigger {
@@ -5670,7 +5742,7 @@ let SpeechOSSnippetsTab = class SpeechOSSnippetsTab extends i$1 {
5670
5742
  .snippet-trigger-text {
5671
5743
  font-size: 14px;
5672
5744
  font-weight: 600;
5673
- color: #34d399;
5745
+ color: #0d9488;
5674
5746
  }
5675
5747
 
5676
5748
  .snippet-trigger-text::before {
@@ -5688,12 +5760,12 @@ let SpeechOSSnippetsTab = class SpeechOSSnippetsTab extends i$1 {
5688
5760
  align-items: flex-start;
5689
5761
  gap: 8px;
5690
5762
  font-size: 13px;
5691
- color: rgba(255, 255, 255, 0.65);
5763
+ color: #525252;
5692
5764
  line-height: 1.5;
5693
5765
  }
5694
5766
 
5695
5767
  .snippet-expansion-arrow {
5696
- color: rgba(255, 255, 255, 0.3);
5768
+ color: #a3a3a3;
5697
5769
  flex-shrink: 0;
5698
5770
  margin-top: 2px;
5699
5771
  }
@@ -5722,13 +5794,13 @@ let SpeechOSSnippetsTab = class SpeechOSSnippetsTab extends i$1 {
5722
5794
  display: flex;
5723
5795
  align-items: center;
5724
5796
  justify-content: center;
5725
- color: rgba(255, 255, 255, 0.4);
5797
+ color: #737373;
5726
5798
  transition: all 0.15s ease;
5727
5799
  }
5728
5800
 
5729
5801
  .edit-btn:hover {
5730
- background: rgba(52, 211, 153, 0.15);
5731
- color: #34d399;
5802
+ background: rgba(13, 148, 136, 0.1);
5803
+ color: #0d9488;
5732
5804
  }
5733
5805
  `,
5734
5806
  ]; }
@@ -6011,30 +6083,32 @@ let SpeechOSVocabularyTab = class SpeechOSVocabularyTab extends i$1 {
6011
6083
  gap: 8px;
6012
6084
  padding: 8px 12px;
6013
6085
  background: rgba(139, 92, 246, 0.1);
6014
- border: 1px solid rgba(139, 92, 246, 0.2);
6086
+ border: 1px solid rgba(139, 92, 246, 0.25);
6015
6087
  border-radius: 8px;
6016
6088
  transition: all 0.15s ease;
6017
6089
  }
6018
6090
 
6019
6091
  .vocabulary-chip:hover {
6020
6092
  background: rgba(139, 92, 246, 0.15);
6021
- border-color: rgba(139, 92, 246, 0.3);
6093
+ border-color: rgba(139, 92, 246, 0.35);
6022
6094
  }
6023
6095
 
6024
6096
  .vocabulary-chip-text {
6025
6097
  font-size: 13px;
6026
6098
  font-weight: 500;
6027
- color: #c4b5fd;
6099
+ color: #7c3aed;
6028
6100
  }
6029
6101
 
6030
6102
  .vocabulary-chip .delete-btn {
6031
6103
  width: 20px;
6032
6104
  height: 20px;
6033
6105
  margin: -4px -4px -4px 0;
6106
+ color: #737373;
6034
6107
  }
6035
6108
 
6036
6109
  .vocabulary-chip .delete-btn:hover {
6037
6110
  background: rgba(239, 68, 68, 0.2);
6111
+ color: #f87171;
6038
6112
  }
6039
6113
  `,
6040
6114
  ]; }
@@ -6435,14 +6509,14 @@ const popupModalStyles = i$4 `
6435
6509
  }
6436
6510
 
6437
6511
  .modal-card {
6438
- background: #1a1d24;
6512
+ background: #f5f5f4;
6439
6513
  border-radius: 16px;
6440
6514
  width: 90%;
6441
6515
  max-width: 400px;
6442
6516
  display: flex;
6443
6517
  flex-direction: column;
6444
- box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4),
6445
- 0 0 0 1px rgba(255, 255, 255, 0.05);
6518
+ box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15),
6519
+ 0 0 0 1px rgba(0, 0, 0, 0.05);
6446
6520
  transform: scale(0.95) translateY(10px);
6447
6521
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
6448
6522
  pointer-events: auto;
@@ -6458,14 +6532,14 @@ const popupModalStyles = i$4 `
6458
6532
  align-items: center;
6459
6533
  justify-content: space-between;
6460
6534
  padding: 16px 20px;
6461
- border-bottom: 1px solid rgba(255, 255, 255, 0.06);
6462
- background: rgba(0, 0, 0, 0.2);
6535
+ border-bottom: 1px solid #e5e5e5;
6536
+ background: #ffffff;
6463
6537
  }
6464
6538
 
6465
6539
  .modal-title {
6466
6540
  font-size: 16px;
6467
6541
  font-weight: 600;
6468
- color: white;
6542
+ color: #171717;
6469
6543
  margin: 0;
6470
6544
  letter-spacing: -0.01em;
6471
6545
  }
@@ -6480,13 +6554,22 @@ const popupModalStyles = i$4 `
6480
6554
  display: flex;
6481
6555
  align-items: center;
6482
6556
  justify-content: center;
6483
- color: rgba(255, 255, 255, 0.5);
6557
+ color: #737373;
6484
6558
  transition: all 0.15s ease;
6485
6559
  }
6486
6560
 
6487
6561
  .close-button:hover {
6488
- background: rgba(255, 255, 255, 0.08);
6489
- color: white;
6562
+ background: #f5f5f4;
6563
+ color: #171717;
6564
+ }
6565
+
6566
+ .close-button:focus {
6567
+ outline: none;
6568
+ box-shadow: 0 0 0 2px #0d9488, 0 0 0 4px rgba(13, 148, 136, 0.2);
6569
+ }
6570
+
6571
+ .close-button:active {
6572
+ transform: scale(0.95);
6490
6573
  }
6491
6574
 
6492
6575
  .modal-body {
@@ -6498,8 +6581,8 @@ const popupModalStyles = i$4 `
6498
6581
  justify-content: flex-end;
6499
6582
  gap: 10px;
6500
6583
  padding: 16px 20px;
6501
- border-top: 1px solid rgba(255, 255, 255, 0.06);
6502
- background: rgba(0, 0, 0, 0.1);
6584
+ border-top: 1px solid #e5e5e5;
6585
+ background: #ffffff;
6503
6586
  }
6504
6587
 
6505
6588
  .btn {
@@ -6516,42 +6599,47 @@ const popupModalStyles = i$4 `
6516
6599
  }
6517
6600
 
6518
6601
  .btn-secondary {
6519
- background: rgba(255, 255, 255, 0.08);
6520
- color: rgba(255, 255, 255, 0.8);
6602
+ background: rgba(0, 0, 0, 0.08);
6603
+ color: #525252;
6521
6604
  }
6522
6605
 
6523
6606
  .btn-secondary:hover {
6524
- background: rgba(255, 255, 255, 0.12);
6525
- color: white;
6607
+ background: rgba(0, 0, 0, 0.12);
6608
+ color: #171717;
6526
6609
  }
6527
6610
 
6528
6611
  .btn-primary {
6529
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
6612
+ background: #0d9488;
6530
6613
  color: white;
6531
- box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
6614
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
6532
6615
  }
6533
6616
 
6534
6617
  .btn-primary:hover {
6535
- transform: translateY(-1px);
6536
- box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
6618
+ background: #0f766e;
6619
+ box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
6620
+ }
6621
+
6622
+ .btn-primary:focus {
6623
+ outline: none;
6624
+ box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
6537
6625
  }
6538
6626
 
6539
6627
  .btn-primary:active {
6540
- transform: translateY(0);
6628
+ transform: scale(0.98);
6541
6629
  }
6542
6630
 
6543
6631
  /* Success state for copy button */
6544
6632
  .btn-success {
6545
- background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
6633
+ background: #059669;
6546
6634
  }
6547
6635
 
6548
6636
  /* Text display area */
6549
6637
  .text-display {
6550
- background: rgba(0, 0, 0, 0.3);
6551
- border: 1px solid rgba(255, 255, 255, 0.08);
6638
+ background: #ffffff;
6639
+ border: 1px solid #e5e5e5;
6552
6640
  border-radius: 10px;
6553
6641
  padding: 14px 16px;
6554
- color: white;
6642
+ color: #171717;
6555
6643
  font-size: 14px;
6556
6644
  line-height: 1.5;
6557
6645
  max-height: 200px;
@@ -6570,12 +6658,12 @@ const popupModalStyles = i$4 `
6570
6658
  }
6571
6659
 
6572
6660
  .text-display::-webkit-scrollbar-thumb {
6573
- background: rgba(255, 255, 255, 0.15);
6661
+ background: rgba(0, 0, 0, 0.15);
6574
6662
  border-radius: 3px;
6575
6663
  }
6576
6664
 
6577
6665
  .text-display::-webkit-scrollbar-thumb:hover {
6578
- background: rgba(255, 255, 255, 0.25);
6666
+ background: rgba(0, 0, 0, 0.25);
6579
6667
  }
6580
6668
 
6581
6669
  /* Instruction list styling */
@@ -6590,7 +6678,7 @@ const popupModalStyles = i$4 `
6590
6678
  align-items: flex-start;
6591
6679
  gap: 12px;
6592
6680
  padding: 12px 0;
6593
- border-bottom: 1px solid rgba(255, 255, 255, 0.06);
6681
+ border-bottom: 1px solid #e5e5e5;
6594
6682
  }
6595
6683
 
6596
6684
  .instruction-item:last-child {
@@ -6601,7 +6689,7 @@ const popupModalStyles = i$4 `
6601
6689
  width: 24px;
6602
6690
  height: 24px;
6603
6691
  border-radius: 50%;
6604
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
6692
+ background: #0d9488;
6605
6693
  color: white;
6606
6694
  font-size: 12px;
6607
6695
  font-weight: 700;
@@ -6613,7 +6701,7 @@ const popupModalStyles = i$4 `
6613
6701
 
6614
6702
  .instruction-text {
6615
6703
  font-size: 14px;
6616
- color: rgba(255, 255, 255, 0.85);
6704
+ color: #171717;
6617
6705
  line-height: 1.5;
6618
6706
  padding-top: 2px;
6619
6707
  }
@@ -6671,7 +6759,7 @@ let SpeechOSDictationOutputModal = class SpeechOSDictationOutputModal extends i$
6671
6759
  width: 32px;
6672
6760
  height: 32px;
6673
6761
  border-radius: 8px;
6674
- background: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%);
6762
+ background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
6675
6763
  display: flex;
6676
6764
  align-items: center;
6677
6765
  justify-content: center;
@@ -6685,31 +6773,35 @@ let SpeechOSDictationOutputModal = class SpeechOSDictationOutputModal extends i$
6685
6773
  }
6686
6774
 
6687
6775
  .modal-title {
6688
- background: linear-gradient(135deg, #34d399 0%, #a78bfa 100%);
6776
+ background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
6689
6777
  -webkit-background-clip: text;
6690
6778
  -webkit-text-fill-color: transparent;
6691
6779
  background-clip: text;
6692
6780
  }
6693
6781
 
6694
6782
  .btn-primary {
6695
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
6696
- box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
6783
+ background: #0d9488;
6784
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
6697
6785
  border-radius: 999px;
6698
6786
  }
6699
6787
 
6700
6788
  .btn-primary:hover {
6701
- background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
6702
- transform: translateY(-2px);
6703
- box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
6789
+ background: #0f766e;
6790
+ box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
6791
+ }
6792
+
6793
+ .btn-primary:focus {
6794
+ outline: none;
6795
+ box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
6704
6796
  }
6705
6797
 
6706
6798
  .btn-primary:active {
6707
- transform: translateY(0);
6799
+ transform: scale(0.98);
6708
6800
  }
6709
6801
 
6710
6802
  .btn-success {
6711
- background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
6712
- box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
6803
+ background: #059669;
6804
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
6713
6805
  border-radius: 999px;
6714
6806
  }
6715
6807
 
@@ -6723,14 +6815,15 @@ let SpeechOSDictationOutputModal = class SpeechOSDictationOutputModal extends i$
6723
6815
  gap: 6px;
6724
6816
  margin-top: 12px;
6725
6817
  padding: 8px 12px;
6726
- background: rgba(16, 185, 129, 0.08);
6818
+ background: #ffffff;
6819
+ border: 1px solid #e5e5e5;
6727
6820
  border-radius: 8px;
6728
6821
  font-size: 12px;
6729
- color: rgba(255, 255, 255, 0.6);
6822
+ color: #525252;
6730
6823
  }
6731
6824
 
6732
6825
  .hint-icon {
6733
- color: #10b981;
6826
+ color: #0d9488;
6734
6827
  flex-shrink: 0;
6735
6828
  }
6736
6829