@transferwise/neptune-css 0.0.0-experimental-bca35d9 → 0.0.0-experimental-e674a91

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 (53) hide show
  1. package/dist/css/accordion.css +7 -10
  2. package/dist/css/alerts.css +142 -14
  3. package/dist/css/background.css +2 -2
  4. package/dist/css/badge.css +3 -1
  5. package/dist/css/breadcrumbs.css +1 -1
  6. package/dist/css/button-groups.css +6 -2
  7. package/dist/css/buttons.css +176 -151
  8. package/dist/css/chevron.css +1 -1
  9. package/dist/css/circles.css +11 -10
  10. package/dist/css/close.css +3 -2
  11. package/dist/css/column-layout.css +1 -0
  12. package/dist/css/currency-flags.css +1 -1
  13. package/dist/css/decision.css +6 -9
  14. package/dist/css/dropdowns.css +20 -12
  15. package/dist/css/droppable.css +9 -12
  16. package/dist/css/footer.css +43 -8
  17. package/dist/css/input-groups.css +139 -146
  18. package/dist/css/list-group.css +33 -12
  19. package/dist/css/modals.css +4 -3
  20. package/dist/css/navbar.css +133 -41
  21. package/dist/css/navs.css +20 -8
  22. package/dist/css/neptune-addons.css +85 -8
  23. package/dist/css/neptune-core.css +94 -42
  24. package/dist/css/neptune.css +1187 -640
  25. package/dist/css/popovers.css +12 -10
  26. package/dist/css/process.css +8 -8
  27. package/dist/css/progress-bars.css +7 -2
  28. package/dist/css/ring.css +2 -2
  29. package/dist/css/select.css +2 -2
  30. package/dist/css/sequences.css +95 -39
  31. package/dist/css/table.css +48 -14
  32. package/dist/css/tick.css +1 -0
  33. package/dist/css/tooltip.css +2 -1
  34. package/dist/css/wells.css +5 -5
  35. package/dist/less/neptune-tokens.less +175 -81
  36. package/dist/props/neptune-tokens.css +40 -80
  37. package/package.json +2 -2
  38. package/src/less/addons/_background-utilities.less +37 -0
  39. package/src/less/alerts.less +36 -0
  40. package/src/less/background.less +1 -0
  41. package/src/less/buttons.less +22 -0
  42. package/src/less/column-layout.less +1 -0
  43. package/src/less/core/_scaffolding.less +22 -3
  44. package/src/less/core/_typography-utilities.less +29 -0
  45. package/src/less/dropdowns.less +8 -0
  46. package/src/less/footer.less +33 -0
  47. package/src/less/mixins/_sequence.less +2 -2
  48. package/src/less/modals.less +1 -0
  49. package/src/less/navbar.less +31 -0
  50. package/src/less/navs.less +10 -0
  51. package/src/less/sequences.less +26 -0
  52. package/src/less/table.less +8 -0
  53. package/src/variables/neptune-tokens.less +10 -1
package/dist/css/navs.css CHANGED
@@ -17,7 +17,7 @@
17
17
  display: block;
18
18
  outline-offset: -1px;
19
19
  padding: 9px 24px 7px;
20
- color: #0e0f0c;
20
+ color: #37517e;
21
21
  color: var(--color-content-primary);
22
22
  font-weight: 400;
23
23
  font-weight: var(--font-weight-regular);
@@ -28,21 +28,26 @@
28
28
  .nav > li > a:focus {
29
29
  -webkit-text-decoration: none;
30
30
  text-decoration: none;
31
+ color: #0084b3;
31
32
  color: var(--color-content-accent-hover);
32
33
  }
33
34
  .nav > li > a:active {
35
+ color: #0077a5;
34
36
  color: var(--color-content-accent-active);
35
37
  }
36
38
  .nav > .active > a {
39
+ color: #0097c7;
37
40
  color: var(--color-content-accent);
38
41
  font-weight: 600;
39
42
  font-weight: var(--font-weight-semi-bold);
40
43
  }
41
44
  .nav > .active > a:hover,
42
45
  .nav > .active > a:focus {
46
+ color: #0084b3;
43
47
  color: var(--color-content-accent-hover);
44
48
  }
45
49
  .nav > .active > a:active {
50
+ color: #0077a5;
46
51
  color: var(--color-content-accent-active);
47
52
  }
48
53
  .nav > .disabled > a:hover,
@@ -54,7 +59,7 @@
54
59
  .nav .open > a,
55
60
  .nav .open > a:hover,
56
61
  .nav .open > a:focus {
57
- background-color: rgba(22,51,0,0.07843);
62
+ background-color: rgba(134,167,189,0.10196);
58
63
  background-color: var(--color-background-neutral);
59
64
  }
60
65
  .nav .nav-divider {
@@ -66,8 +71,14 @@
66
71
  .nav > li > a > img {
67
72
  max-width: none;
68
73
  }
74
+ .nav-inverse > li > a {
75
+ color: #ffffff;
76
+ }
77
+ .nav-inverse > li.active > a {
78
+ background-color: #2e4369;
79
+ }
69
80
  .nav-tabs {
70
- border-bottom: 1px solid rgba(14,15,12,0.12157);
81
+ border-bottom: 1px solid rgba(0,0,0,0.10196);
71
82
  border-bottom: 1px solid var(--color-border-neutral);
72
83
  }
73
84
  .nav-tabs > li {
@@ -91,11 +102,12 @@
91
102
  margin-right: initial;
92
103
  }
93
104
  .nav-tabs > .active > a {
94
- border-bottom: 3px solid rgba(14,15,12,0.12157);
105
+ border-bottom: 3px solid rgba(0,0,0,0.10196);
95
106
  border-bottom: 3px solid var(--color-border-neutral);
96
107
  }
97
108
  .nav-tabs > .active > a:hover,
98
109
  .nav-tabs > .active > a:focus {
110
+ color: #0097c7;
99
111
  color: var(--color-content-accent);
100
112
  cursor: default;
101
113
  }
@@ -174,13 +186,13 @@ html:not([dir="rtl"]) .nav-stacked > li > a {
174
186
  [dir="rtl"] .nav-stacked > li.active > a,
175
187
  [dir="rtl"] .nav-stacked > li.active > a:hover,
176
188
  [dir="rtl"] .nav-stacked > li.active > a:focus {
177
- border-right: 3px solid #9fe870;
189
+ border-right: 3px solid #00a2dd;
178
190
  border-right: 3px solid var(--color-interactive-accent);
179
191
  }
180
192
  html:not([dir="rtl"]) .nav-stacked > li.active > a,
181
193
  html:not([dir="rtl"]) .nav-stacked > li.active > a:hover,
182
194
  html:not([dir="rtl"]) .nav-stacked > li.active > a:focus {
183
- border-left: 3px solid #9fe870;
195
+ border-left: 3px solid #00a2dd;
184
196
  border-left: 3px solid var(--color-interactive-accent);
185
197
  }
186
198
  [dir="rtl"] .nav-stacked > li.active > a,
@@ -260,14 +272,14 @@ html:not([dir="rtl"]) .nav-stacked > li.active > a:focus {
260
272
  }
261
273
  .nav-tabs-justified > li > a {
262
274
  margin-right: 0;
263
- border-bottom: 1px solid rgba(14,15,12,0.12157);
275
+ border-bottom: 1px solid rgba(0,0,0,0.10196);
264
276
  border-bottom: 1px solid var(--color-border-neutral);
265
277
  border-radius: 3px;
266
278
  }
267
279
  .nav-tabs-justified > .active > a,
268
280
  .nav-tabs-justified > .active > a:hover,
269
281
  .nav-tabs-justified > .active > a:focus {
270
- border: 1px solid rgba(14,15,12,0.12157);
282
+ border: 1px solid rgba(0,0,0,0.10196);
271
283
  border: 1px solid var(--color-border-neutral);
272
284
  border-bottom: 0;
273
285
  }
@@ -1,23 +1,31 @@
1
1
  .bg-default,
2
2
  .bg-neutral {
3
- background-color: rgba(22,51,0,0.07843) !important;
3
+ background-color: rgba(134,167,189,0.10196) !important;
4
4
  background-color: var(--color-background-neutral) !important;
5
- color: #454745;
5
+ color: #5d7079;
6
6
  color: var(--color-content-secondary);
7
7
  }
8
8
  .bg-accent,
9
9
  .bg-info {
10
+ background-color: rgba(56,200,255,0.10196) !important;
10
11
  background-color: var(--color-background-accent) !important;
11
12
  }
13
+ .bg-primary {
14
+ background-color: #37517e !important;
15
+ color: #ffffff;
16
+ }
12
17
  .bg-positive,
13
18
  .bg-success {
19
+ background-color: rgba(54,199,151,0.10196) !important;
14
20
  background-color: var(--color-background-positive) !important;
15
21
  }
16
22
  .bg-negative,
17
23
  .bg-danger {
24
+ background-color: rgba(255,135,135,0.10196) !important;
18
25
  background-color: var(--color-background-negative) !important;
19
26
  }
20
27
  .bg-warning {
28
+ background-color: rgba(255,172,0,0.10196) !important;
21
29
  background-color: var(--color-background-warning) !important;
22
30
  }
23
31
  .bg-elevated {
@@ -29,9 +37,80 @@
29
37
  background-color: var(--color-background-screen) !important;
30
38
  }
31
39
  .bg-overlay {
32
- background-color: rgba(22,51,0,0.07843) !important;
40
+ background-color: rgba(0,0,0,0.10196) !important;
33
41
  background-color: var(--color-background-overlay) !important;
34
42
  }
43
+ .bg-primary h1,
44
+ .bg-info h1,
45
+ .bg-accent h1,
46
+ .bg-primary h2,
47
+ .bg-info h2,
48
+ .bg-accent h2,
49
+ .bg-primary h3,
50
+ .bg-info h3,
51
+ .bg-accent h3,
52
+ .bg-primary h4,
53
+ .bg-info h4,
54
+ .bg-accent h4,
55
+ .bg-primary h5,
56
+ .bg-info h5,
57
+ .bg-accent h5,
58
+ .bg-primary h6,
59
+ .bg-info h6,
60
+ .bg-accent h6,
61
+ .bg-primary .h1,
62
+ .bg-info .h1,
63
+ .bg-accent .h1,
64
+ .bg-primary .h2,
65
+ .bg-info .h2,
66
+ .bg-accent .h2,
67
+ .bg-primary .h3,
68
+ .bg-info .h3,
69
+ .bg-accent .h3,
70
+ .bg-primary .h4,
71
+ .bg-info .h4,
72
+ .bg-accent .h4,
73
+ .bg-primary .h5,
74
+ .bg-info .h5,
75
+ .bg-accent .h5,
76
+ .bg-primary .h6,
77
+ .bg-info .h6,
78
+ .bg-accent .h6,
79
+ .bg-primary .title-1,
80
+ .bg-info .title-1,
81
+ .bg-accent .title-1,
82
+ .bg-primary .title-2,
83
+ .bg-info .title-2,
84
+ .bg-accent .title-2,
85
+ .bg-primary .title-3,
86
+ .bg-info .title-3,
87
+ .bg-accent .title-3,
88
+ .bg-primary .title-4,
89
+ .bg-info .title-4,
90
+ .bg-accent .title-4,
91
+ .bg-primary .title-5,
92
+ .bg-info .title-5,
93
+ .bg-accent .title-5,
94
+ .bg-primary .np-text-title-screen,
95
+ .bg-info .np-text-title-screen,
96
+ .bg-accent .np-text-title-screen,
97
+ .bg-primary .np-text-title-section,
98
+ .bg-info .np-text-title-section,
99
+ .bg-accent .np-text-title-section,
100
+ .bg-primary .np-text-title-subsection,
101
+ .bg-info .np-text-title-subsection,
102
+ .bg-accent .np-text-title-subsection,
103
+ .bg-primary .np-text-title-body,
104
+ .bg-info .np-text-title-body,
105
+ .bg-accent .np-text-title-body,
106
+ .bg-primary .np-text-title-group,
107
+ .bg-info .np-text-title-group,
108
+ .bg-accent .np-text-title-group,
109
+ .bg-primary strong,
110
+ .bg-info strong,
111
+ .bg-accent strong {
112
+ color: #ffffff;
113
+ }
35
114
  .d-block {
36
115
  display: block !important;
37
116
  }
@@ -1746,8 +1825,7 @@ html:not([dir="rtl"]) .p-x-panel {
1746
1825
  }
1747
1826
  @supports (hyphenate-limit-chars: 1) {
1748
1827
  .np-text-hyphenated {
1749
- -webkit-hyphens: auto;
1750
- hyphens: auto;
1828
+ hyphens: auto;
1751
1829
  hyphenate-limit-chars: 7 3;
1752
1830
  }
1753
1831
  @media (min-width: 768px) {
@@ -1763,8 +1841,7 @@ html:not([dir="rtl"]) .p-x-panel {
1763
1841
  }
1764
1842
  @supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
1765
1843
  .np-text-hyphenated {
1766
- -webkit-hyphens: auto;
1767
- hyphens: auto;
1844
+ hyphens: auto;
1768
1845
  -webkit-hyphenate-limit-before: 3;
1769
1846
  -webkit-hyphenate-limit-after: 3;
1770
1847
  }
@@ -1775,6 +1852,6 @@ html:not([dir="rtl"]) .p-x-panel {
1775
1852
  }
1776
1853
  }
1777
1854
  .border-bottom {
1778
- border-bottom: 1px solid rgba(22,51,0,0.07843);
1855
+ border-bottom: 1px solid rgba(134,167,189,0.10196);
1779
1856
  border-bottom: 1px solid var(--color-background-neutral);
1780
1857
  }
@@ -310,7 +310,7 @@ summary {
310
310
  --btn-radius-base: 9999px;
311
311
  --btn-sm-radius-base: var(--btn-radius-base);
312
312
  --btn-lg-radius-base: var(--btn-radius-base);
313
- color: #454745;
313
+ color: #5d7079;
314
314
  color: var(--color-content-secondary);
315
315
  background-color: #ffffff;
316
316
  background-color: var(--color-background-screen);
@@ -320,7 +320,7 @@ html {
320
320
  font-size: var(--base-font-size);
321
321
  font-family: 'Inter', Helvetica, Arial, sans-serif;
322
322
  font-family: var(--font-family-regular);
323
- color: #454745;
323
+ color: #5d7079;
324
324
  color: var(--color-content-secondary);
325
325
  background-color: #ffffff;
326
326
  background-color: var(--color-background-screen);
@@ -337,15 +337,13 @@ pre {
337
337
  margin: 0;
338
338
  }
339
339
  .np-theme-personal::-moz-selection {
340
- background-color: rgba(22,51,0,0.18039);
341
340
  background-color: var(--color-background-neutral-active);
342
- color: #0e0f0c;
341
+ color: #37517e;
343
342
  color: var(--color-content-primary);
344
343
  }
345
344
  .np-theme-personal::selection {
346
- background-color: rgba(22,51,0,0.18039);
347
345
  background-color: var(--color-background-neutral-active);
348
- color: #0e0f0c;
346
+ color: #37517e;
349
347
  color: var(--color-content-primary);
350
348
  }
351
349
  /* DEPRECATED: use `a` tag or .np-text-link-* instead */
@@ -354,8 +352,29 @@ pre {
354
352
  a,
355
353
  .np-text-link-default,
356
354
  .np-text-link-large {
357
- color: #163300;
358
- color: var(--color-content-link);
355
+ color: var(--color-sentiment-content-primary, var(--color-content-link));
356
+ }
357
+ .bg-primary .anchor,
358
+ .bg-primary a,
359
+ .bg-primary .np-text-link-default,
360
+ .bg-primary .np-text-link-large {
361
+ color: #00b9ff;
362
+ }
363
+ .bg-primary .anchor:hover,
364
+ .bg-primary a:hover,
365
+ .bg-primary .np-text-link-default:hover,
366
+ .bg-primary .np-text-link-large:hover,
367
+ .bg-primary .anchor:focus,
368
+ .bg-primary a:focus,
369
+ .bg-primary .np-text-link-default:focus,
370
+ .bg-primary .np-text-link-large:focus {
371
+ color: #00a6ea;
372
+ }
373
+ .bg-primary .anchor:active,
374
+ .bg-primary a:active,
375
+ .bg-primary .np-text-link-default:active,
376
+ .bg-primary .np-text-link-large:active {
377
+ color: #0097db;
359
378
  }
360
379
  .anchor:hover,
361
380
  a:hover,
@@ -365,8 +384,7 @@ a:hover,
365
384
  a:focus,
366
385
  .np-text-link-default:focus,
367
386
  .np-text-link-large:focus {
368
- color: #0d1f00;
369
- color: var(--color-content-link-hover);
387
+ color: var(--color-sentiment-content-primary-hover, var(--color-content-link-hover));
370
388
  -webkit-text-decoration: underline;
371
389
  text-decoration: underline;
372
390
  }
@@ -374,14 +392,13 @@ a:focus,
374
392
  a:active,
375
393
  .np-text-link-default:active,
376
394
  .np-text-link-large:active {
377
- color: #0e0f0c;
378
- color: var(--color-content-link-active);
395
+ color: var(--color-sentiment-content-primary-active, var(--color-content-link-active));
379
396
  }
380
397
  .anchor.secondary,
381
398
  a.secondary,
382
399
  .np-text-link-default.secondary,
383
400
  .np-text-link-large.secondary {
384
- color: #454745;
401
+ color: #5d7079;
385
402
  color: var(--color-content-secondary);
386
403
  }
387
404
  .anchor.secondary:hover,
@@ -392,12 +409,14 @@ a.secondary:hover,
392
409
  a.secondary:focus,
393
410
  .np-text-link-default.secondary:focus,
394
411
  .np-text-link-large.secondary:focus {
412
+ color: #0084b3;
395
413
  color: var(--color-content-accent-hover);
396
414
  }
397
415
  .anchor.secondary:active,
398
416
  a.secondary:active,
399
417
  .np-text-link-default.secondary:active,
400
418
  .np-text-link-large.secondary:active {
419
+ color: #0077a5;
401
420
  color: var(--color-content-accent-active);
402
421
  }
403
422
  html.ios-click {
@@ -430,14 +449,14 @@ textarea {
430
449
  resize: vertical;
431
450
  }
432
451
  input::-moz-placeholder, textarea::-moz-placeholder {
433
- color: #6a6c6a;
452
+ color: #768e9c;
434
453
  color: var(--color-content-tertiary);
435
454
  }
436
455
  input:input-placeholder,
437
456
  textarea:input-placeholder,
438
457
  input::placeholder,
439
458
  textarea::placeholder {
440
- color: #6a6c6a;
459
+ color: #768e9c;
441
460
  color: var(--color-content-tertiary);
442
461
  }
443
462
  ol,
@@ -504,11 +523,11 @@ ul ul {
504
523
  padding-left: initial;
505
524
  }
506
525
  [dir="rtl"] .list-inline > li {
507
- border-left: 1px solid rgba(14,15,12,0.12157);
526
+ border-left: 1px solid rgba(0,0,0,0.10196);
508
527
  border-left: 1px solid var(--color-border-neutral);
509
528
  }
510
529
  html:not([dir="rtl"]) .list-inline > li {
511
- border-right: 1px solid rgba(14,15,12,0.12157);
530
+ border-right: 1px solid rgba(0,0,0,0.10196);
512
531
  border-right: 1px solid var(--color-border-neutral);
513
532
  }
514
533
  [dir="rtl"] .list-inline > li:last-child {
@@ -529,7 +548,7 @@ dt {
529
548
  dd {
530
549
  margin-bottom: 16px;
531
550
  margin-bottom: var(--size-16);
532
- color: #0e0f0c;
551
+ color: #37517e;
533
552
  color: var(--color-content-primary);
534
553
  }
535
554
  @media (min-width: 576px) {
@@ -597,9 +616,12 @@ hr {
597
616
  margin: 16px auto;
598
617
  margin: var(--size-16) auto;
599
618
  border: 0;
600
- border-top: 1px solid rgba(14,15,12,0.12157);
619
+ border-top: 1px solid rgba(0,0,0,0.10196);
601
620
  border-top: 1px solid var(--color-border-neutral);
602
621
  }
622
+ .bg-primary hr {
623
+ border-top: 1px solid rgba(255,255,255,0.10196);
624
+ }
603
625
  @media (min-width: 576px) {
604
626
  hr {
605
627
  margin: 24px auto;
@@ -688,7 +710,7 @@ h6,
688
710
  .np-text-title-body,
689
711
  .np-text-title-group {
690
712
  margin: 0;
691
- color: #0e0f0c;
713
+ color: #37517e;
692
714
  color: var(--color-content-primary);
693
715
  line-height: 1.2;
694
716
  line-height: var(--line-height-title);
@@ -717,8 +739,7 @@ h6,
717
739
  .np-text-title-subsection,
718
740
  .np-text-title-body,
719
741
  .np-text-title-group {
720
- -webkit-hyphens: auto;
721
- hyphens: auto;
742
+ hyphens: auto;
722
743
  hyphenate-limit-chars: 7 3;
723
744
  }
724
745
  @media (min-width: 768px) {
@@ -797,8 +818,7 @@ h6,
797
818
  .np-text-title-subsection,
798
819
  .np-text-title-body,
799
820
  .np-text-title-group {
800
- -webkit-hyphens: auto;
801
- hyphens: auto;
821
+ hyphens: auto;
802
822
  -webkit-hyphenate-limit-before: 3;
803
823
  -webkit-hyphenate-limit-after: 3;
804
824
  }
@@ -981,7 +1001,7 @@ h6,
981
1001
  line-height: var(--line-height-title);
982
1002
  }
983
1003
  .tiny {
984
- color: #454745;
1004
+ color: #5d7079;
985
1005
  color: var(--color-content-secondary);
986
1006
  }
987
1007
  /* DEPRECATED: use .np-text-body-default instead */
@@ -1087,8 +1107,7 @@ a,
1087
1107
  .np-text-display-large,
1088
1108
  .np-text-display-medium,
1089
1109
  .np-text-display-small {
1090
- -webkit-hyphens: auto;
1091
- hyphens: auto;
1110
+ hyphens: auto;
1092
1111
  hyphenate-limit-chars: 7 3;
1093
1112
  }
1094
1113
  @media (min-width: 768px) {
@@ -1113,8 +1132,7 @@ a,
1113
1132
  .np-text-display-large,
1114
1133
  .np-text-display-medium,
1115
1134
  .np-text-display-small {
1116
- -webkit-hyphens: auto;
1117
- hyphens: auto;
1135
+ hyphens: auto;
1118
1136
  -webkit-hyphenate-limit-before: 3;
1119
1137
  -webkit-hyphenate-limit-after: 3;
1120
1138
  }
@@ -1616,19 +1634,21 @@ p + .np-text-title-group {
1616
1634
  }
1617
1635
  .control-1,
1618
1636
  .control-2 {
1637
+ color: #0097c7;
1619
1638
  color: var(--color-content-accent);
1620
1639
  }
1621
1640
  strong,
1622
1641
  b {
1623
1642
  font-weight: 600;
1624
1643
  font-weight: var(--font-weight-semi-bold);
1625
- color: #0e0f0c;
1644
+ color: #37517e;
1626
1645
  color: var(--color-content-primary);
1627
1646
  }
1628
1647
  mark,
1629
1648
  .mark {
1630
1649
  padding: 4px;
1631
1650
  padding: var(--size-4);
1651
+ background-color: rgba(255,172,0,0.10196);
1632
1652
  background-color: var(--color-background-warning);
1633
1653
  }
1634
1654
  address {
@@ -1645,9 +1665,11 @@ blockquote {
1645
1665
  font-size: var(--font-size-16);
1646
1666
  }
1647
1667
  [dir="rtl"] blockquote {
1668
+ border-right: 2px solid #0097c7;
1648
1669
  border-right: 2px solid var(--color-content-accent);
1649
1670
  }
1650
1671
  html:not([dir="rtl"]) blockquote {
1672
+ border-left: 2px solid #0097c7;
1651
1673
  border-left: 2px solid var(--color-content-accent);
1652
1674
  }
1653
1675
  blockquote p {
@@ -1661,7 +1683,7 @@ blockquote ul:last-child {
1661
1683
  }
1662
1684
  blockquote footer {
1663
1685
  display: block;
1664
- color: #454745;
1686
+ color: #5d7079;
1665
1687
  color: var(--color-content-secondary);
1666
1688
  font-size: 0.875rem;
1667
1689
  font-size: var(--font-size-14);
@@ -1704,9 +1726,11 @@ blockquote footer::before {
1704
1726
  text-align: left;
1705
1727
  }
1706
1728
  [dir="rtl"] .blockquote-reverse {
1729
+ border-left: 2px solid #0097c7;
1707
1730
  border-left: 2px solid var(--color-content-accent);
1708
1731
  }
1709
1732
  html:not([dir="rtl"]) .blockquote-reverse {
1733
+ border-right: 2px solid #0097c7;
1710
1734
  border-right: 2px solid var(--color-content-accent);
1711
1735
  }
1712
1736
  [dir="rtl"] .blockquote-reverse {
@@ -1733,7 +1757,7 @@ pre {
1733
1757
  padding: 16px;
1734
1758
  padding: var(--size-16);
1735
1759
  overflow: auto;
1736
- color: #454745;
1760
+ color: #5d7079;
1737
1761
  color: var(--color-content-secondary);
1738
1762
  font-size: 0.875rem;
1739
1763
  font-size: var(--font-size-14);
@@ -1741,7 +1765,7 @@ pre {
1741
1765
  line-height: var(--line-height-body);
1742
1766
  word-wrap: break-word;
1743
1767
  word-break: break-all;
1744
- background-color: rgba(22,51,0,0.07843);
1768
+ background-color: rgba(134,167,189,0.10196);
1745
1769
  background-color: var(--color-background-neutral);
1746
1770
  }
1747
1771
  pre code {
@@ -1755,9 +1779,9 @@ code {
1755
1779
  padding: 2px 4px;
1756
1780
  padding: 2px var(--size-4);
1757
1781
  font-size: 90%;
1758
- color: #454745;
1782
+ color: #5d7079;
1759
1783
  color: var(--color-content-secondary);
1760
- background-color: rgba(22,51,0,0.07843);
1784
+ background-color: rgba(134,167,189,0.10196);
1761
1785
  background-color: var(--color-background-neutral);
1762
1786
  }
1763
1787
  kbd {
@@ -1937,61 +1961,89 @@ kbd kbd {
1937
1961
  font-style: italic !important;
1938
1962
  }
1939
1963
  .text-primary {
1940
- color: #0e0f0c !important;
1964
+ color: #37517e !important;
1941
1965
  color: var(--color-content-primary) !important;
1942
1966
  }
1943
1967
  a.text-primary:hover,
1944
1968
  a.text-primary:focus {
1945
- color: #0e0f0c !important;
1969
+ color: #37517e !important;
1946
1970
  color: var(--color-content-primary) !important;
1947
1971
  }
1972
+ .bg-primary .text-primary {
1973
+ color: #ffffff !important;
1974
+ }
1948
1975
  .text-secondary {
1949
- color: #454745 !important;
1976
+ color: #5d7079 !important;
1950
1977
  color: var(--color-content-secondary) !important;
1951
1978
  }
1952
1979
  .text-positive,
1953
1980
  .text-success {
1981
+ color: #008026 !important;
1954
1982
  color: var(--color-content-positive) !important;
1955
1983
  }
1956
1984
  a.text-positive:hover,
1957
1985
  a.text-success:hover,
1958
1986
  a.text-positive:focus,
1959
1987
  a.text-success:focus {
1988
+ color: #006d13 !important;
1960
1989
  color: var(--color-content-positive-hover) !important;
1961
1990
  }
1991
+ .bg-primary .text-positive,
1992
+ .bg-primary .text-success {
1993
+ color: #6fd698 !important;
1994
+ }
1962
1995
  .text-accent,
1963
1996
  .text-info {
1997
+ color: #0097c7 !important;
1964
1998
  color: var(--color-content-accent) !important;
1965
- color: #163300 !important;
1966
1999
  color: var(--color-interactive-primary) !important;
1967
2000
  }
1968
2001
  a.text-accent:hover,
1969
2002
  a.text-info:hover,
1970
2003
  a.text-accent:focus,
1971
2004
  a.text-info:focus {
2005
+ color: #0084b3 !important;
1972
2006
  color: var(--color-content-accent-hover) !important;
1973
2007
  }
2008
+ .bg-primary .text-accent,
2009
+ .bg-primary .text-info {
2010
+ color: #00b9ff !important;
2011
+ }
1974
2012
  .text-warning {
2013
+ color: #9a6500 !important;
1975
2014
  color: var(--color-content-warning) !important;
1976
2015
  }
1977
2016
  a.text-warning:hover,
1978
2017
  a.text-warning:focus {
2018
+ color: #855400 !important;
1979
2019
  color: var(--color-content-warning-hover) !important;
1980
2020
  }
2021
+ .bg-primary .text-warning {
2022
+ color: #ffd184 !important;
2023
+ }
1981
2024
  .text-negative,
1982
2025
  .text-danger {
1983
- color: #cb272f !important;
1984
2026
  color: var(--color-sentiment-negative) !important;
1985
2027
  }
1986
2028
  a.text-negative:hover,
1987
2029
  a.text-danger:hover,
1988
2030
  a.text-negative:focus,
1989
2031
  a.text-danger:focus {
1990
- color: #b8232b !important;
1991
2032
  color: var(--color-sentiment-negative-hover) !important;
1992
2033
  }
2034
+ .bg-primary .text-negative,
2035
+ .bg-primary .text-danger {
2036
+ color: #ffa6a9 !important;
2037
+ }
2038
+ .text-inverse {
2039
+ color: #ffffff !important;
2040
+ }
2041
+ a.text-inverse:hover,
2042
+ a.text-inverse:focus {
2043
+ color: #c9cbce !important;
2044
+ }
1993
2045
  .text-muted {
1994
- color: #6a6c6a !important;
2046
+ color: #768e9c !important;
1995
2047
  color: var(--color-content-tertiary) !important;
1996
2048
  }
1997
2049
  .colored-dot::after {