@transferwise/neptune-css 0.0.0-experimental-d2bc8ee → 0.0.0-experimental-673f8bf

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 (72) 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 +28 -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 +144 -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 +126 -44
  24. package/dist/css/neptune.css +1264 -690
  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/fonts/TW-Averta-Bold.woff +0 -0
  36. package/dist/fonts/TW-Averta-Bold.woff2 +0 -0
  37. package/dist/fonts/TW-Averta-Regular.woff +0 -0
  38. package/dist/fonts/TW-Averta-Regular.woff2 +0 -0
  39. package/dist/fonts/TW-Averta-Semibold.woff +0 -0
  40. package/dist/fonts/TW-Averta-Semibold.woff2 +0 -0
  41. package/dist/fonts/TransferWise-IconFont.svg +81 -0
  42. package/dist/fonts/TransferWise-IconFont.woff +0 -0
  43. package/dist/less/neptune-tokens.less +174 -82
  44. package/dist/props/legacy-custom-props.css +69 -0
  45. package/dist/props/neptune-tokens.css +40 -80
  46. package/package.json +4 -4
  47. package/src/fonts/TW-Averta-Bold.woff +0 -0
  48. package/src/fonts/TW-Averta-Bold.woff2 +0 -0
  49. package/src/fonts/TW-Averta-Regular.woff +0 -0
  50. package/src/fonts/TW-Averta-Regular.woff2 +0 -0
  51. package/src/fonts/TW-Averta-Semibold.woff +0 -0
  52. package/src/fonts/TW-Averta-Semibold.woff2 +0 -0
  53. package/src/fonts/TransferWise-IconFont.svg +81 -0
  54. package/src/fonts/TransferWise-IconFont.woff +0 -0
  55. package/src/less/addons/_background-utilities.less +37 -0
  56. package/src/less/alerts.less +36 -0
  57. package/src/less/background.less +1 -0
  58. package/src/less/buttons.less +22 -0
  59. package/src/less/column-layout.less +1 -0
  60. package/src/less/core/_fonts.less +26 -0
  61. package/src/less/core/_scaffolding.less +34 -5
  62. package/src/less/core/_typography-utilities.less +29 -0
  63. package/src/less/dropdowns.less +18 -0
  64. package/src/less/footer.less +33 -0
  65. package/src/less/mixins/_sequence.less +2 -2
  66. package/src/less/modals.less +1 -0
  67. package/src/less/navbar.less +35 -0
  68. package/src/less/navs.less +10 -0
  69. package/src/less/sequences.less +26 -0
  70. package/src/less/table.less +8 -0
  71. package/src/props/legacy-custom-props.css +69 -0
  72. package/src/variables/neptune-tokens.less +9 -2
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
  }
@@ -55,6 +55,26 @@
55
55
  src: url("../fonts/inter-vietnamese-variable-wghtOnly-normal.woff2") format("woff2");
56
56
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
57
57
  }
58
+ @font-face {
59
+ font-weight: 400;
60
+ font-weight: var(--font-weight-regular);
61
+ font-family: Averta;
62
+ src: url("../fonts/TW-Averta-Regular.woff2") format("woff2"), url("../fonts/TW-Averta-Regular.woff") format("woff");
63
+ font-display: swap;
64
+ }
65
+ @font-face {
66
+ font-weight: 600;
67
+ font-weight: var(--font-weight-semi-bold);
68
+ font-family: Averta;
69
+ src: url("../fonts/TW-Averta-Semibold.woff2") format("woff2"), url("../fonts/TW-Averta-Semibold.woff") format("woff");
70
+ font-display: swap;
71
+ }
72
+ @font-face {
73
+ font-weight: 700;
74
+ font-weight: var(--font-weight-bold);
75
+ font-family: Averta;
76
+ src: url("../fonts/TW-Averta-Bold.woff2") format("woff2"), url("../fonts/TW-Averta-Bold.woff") format("woff");
77
+ }
58
78
  @font-face {
59
79
  font-family: "Wise Sans";
60
80
  font-style: normal;
@@ -237,8 +257,7 @@ Add the correct display in Chrome and Safari.
237
257
  summary {
238
258
  display: list-item;
239
259
  }
240
- :root,
241
- .np-theme-personal {
260
+ :root {
242
261
  --base-font-size: 16px;
243
262
  --font-family-regular: "Inter", Helvetica, Arial, sans-serif;
244
263
  --input-group-addon-padding: 12px 16px calc(12px - 2px);
@@ -255,6 +274,17 @@ summary {
255
274
  --btn-radius-base: 3px;
256
275
  --btn-sm-radius-base: 2px;
257
276
  --btn-lg-radius-base: 3px;
277
+ }
278
+ .np-theme-light,
279
+ .np-theme-dark,
280
+ .np-theme-navy {
281
+ --font-family-regular: averta, avenir w02, avenir, helvetica, arial, sans-serif !important;
282
+ font-family: averta, avenir w02, avenir, helvetica, arial, sans-serif;
283
+ font-family: var(--font-family-regular);
284
+ line-height: 1.5;
285
+ line-height: var(--line-height-body);
286
+ }
287
+ .np-theme-personal {
258
288
  --font-family-regular: "Inter", Helvetica, Arial, sans-serif !important;
259
289
  font-family: "Inter", Helvetica, Arial, sans-serif;
260
290
  font-family: var(--font-family-regular);
@@ -280,7 +310,7 @@ summary {
280
310
  --btn-radius-base: 9999px;
281
311
  --btn-sm-radius-base: var(--btn-radius-base);
282
312
  --btn-lg-radius-base: var(--btn-radius-base);
283
- color: #454745;
313
+ color: #5d7079;
284
314
  color: var(--color-content-secondary);
285
315
  background-color: #ffffff;
286
316
  background-color: var(--color-background-screen);
@@ -290,7 +320,7 @@ html {
290
320
  font-size: var(--base-font-size);
291
321
  font-family: 'Inter', Helvetica, Arial, sans-serif;
292
322
  font-family: var(--font-family-regular);
293
- color: #454745;
323
+ color: #5d7079;
294
324
  color: var(--color-content-secondary);
295
325
  background-color: #ffffff;
296
326
  background-color: var(--color-background-screen);
@@ -307,15 +337,13 @@ pre {
307
337
  margin: 0;
308
338
  }
309
339
  .np-theme-personal::-moz-selection {
310
- background-color: rgba(22,51,0,0.18039);
311
340
  background-color: var(--color-background-neutral-active);
312
- color: #0e0f0c;
341
+ color: #37517e;
313
342
  color: var(--color-content-primary);
314
343
  }
315
344
  .np-theme-personal::selection {
316
- background-color: rgba(22,51,0,0.18039);
317
345
  background-color: var(--color-background-neutral-active);
318
- color: #0e0f0c;
346
+ color: #37517e;
319
347
  color: var(--color-content-primary);
320
348
  }
321
349
  /* DEPRECATED: use `a` tag or .np-text-link-* instead */
@@ -324,8 +352,29 @@ pre {
324
352
  a,
325
353
  .np-text-link-default,
326
354
  .np-text-link-large {
327
- color: #163300;
328
- 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;
329
378
  }
330
379
  .anchor:hover,
331
380
  a:hover,
@@ -335,8 +384,7 @@ a:hover,
335
384
  a:focus,
336
385
  .np-text-link-default:focus,
337
386
  .np-text-link-large:focus {
338
- color: #0d1f00;
339
- color: var(--color-content-link-hover);
387
+ color: var(--color-sentiment-content-primary-hover, var(--color-content-link-hover));
340
388
  -webkit-text-decoration: underline;
341
389
  text-decoration: underline;
342
390
  }
@@ -344,14 +392,13 @@ a:focus,
344
392
  a:active,
345
393
  .np-text-link-default:active,
346
394
  .np-text-link-large:active {
347
- color: #0e0f0c;
348
- color: var(--color-content-link-active);
395
+ color: var(--color-sentiment-content-primary-active, var(--color-content-link-active));
349
396
  }
350
397
  .anchor.secondary,
351
398
  a.secondary,
352
399
  .np-text-link-default.secondary,
353
400
  .np-text-link-large.secondary {
354
- color: #454745;
401
+ color: #5d7079;
355
402
  color: var(--color-content-secondary);
356
403
  }
357
404
  .anchor.secondary:hover,
@@ -362,12 +409,14 @@ a.secondary:hover,
362
409
  a.secondary:focus,
363
410
  .np-text-link-default.secondary:focus,
364
411
  .np-text-link-large.secondary:focus {
412
+ color: #0084b3;
365
413
  color: var(--color-content-accent-hover);
366
414
  }
367
415
  .anchor.secondary:active,
368
416
  a.secondary:active,
369
417
  .np-text-link-default.secondary:active,
370
418
  .np-text-link-large.secondary:active {
419
+ color: #0077a5;
371
420
  color: var(--color-content-accent-active);
372
421
  }
373
422
  html.ios-click {
@@ -400,14 +449,14 @@ textarea {
400
449
  resize: vertical;
401
450
  }
402
451
  input::-moz-placeholder, textarea::-moz-placeholder {
403
- color: #6a6c6a;
452
+ color: #768e9c;
404
453
  color: var(--color-content-tertiary);
405
454
  }
406
455
  input:input-placeholder,
407
456
  textarea:input-placeholder,
408
457
  input::placeholder,
409
458
  textarea::placeholder {
410
- color: #6a6c6a;
459
+ color: #768e9c;
411
460
  color: var(--color-content-tertiary);
412
461
  }
413
462
  ol,
@@ -474,11 +523,11 @@ ul ul {
474
523
  padding-left: initial;
475
524
  }
476
525
  [dir="rtl"] .list-inline > li {
477
- border-left: 1px solid rgba(14,15,12,0.12157);
526
+ border-left: 1px solid rgba(0,0,0,0.10196);
478
527
  border-left: 1px solid var(--color-border-neutral);
479
528
  }
480
529
  html:not([dir="rtl"]) .list-inline > li {
481
- border-right: 1px solid rgba(14,15,12,0.12157);
530
+ border-right: 1px solid rgba(0,0,0,0.10196);
482
531
  border-right: 1px solid var(--color-border-neutral);
483
532
  }
484
533
  [dir="rtl"] .list-inline > li:last-child {
@@ -499,7 +548,7 @@ dt {
499
548
  dd {
500
549
  margin-bottom: 16px;
501
550
  margin-bottom: var(--size-16);
502
- color: #0e0f0c;
551
+ color: #37517e;
503
552
  color: var(--color-content-primary);
504
553
  }
505
554
  @media (min-width: 576px) {
@@ -567,9 +616,12 @@ hr {
567
616
  margin: 16px auto;
568
617
  margin: var(--size-16) auto;
569
618
  border: 0;
570
- border-top: 1px solid rgba(14,15,12,0.12157);
619
+ border-top: 1px solid rgba(0,0,0,0.10196);
571
620
  border-top: 1px solid var(--color-border-neutral);
572
621
  }
622
+ .bg-primary hr {
623
+ border-top: 1px solid rgba(255,255,255,0.10196);
624
+ }
573
625
  @media (min-width: 576px) {
574
626
  hr {
575
627
  margin: 24px auto;
@@ -658,7 +710,7 @@ h6,
658
710
  .np-text-title-body,
659
711
  .np-text-title-group {
660
712
  margin: 0;
661
- color: #0e0f0c;
713
+ color: #37517e;
662
714
  color: var(--color-content-primary);
663
715
  line-height: 1.2;
664
716
  line-height: var(--line-height-title);
@@ -687,8 +739,7 @@ h6,
687
739
  .np-text-title-subsection,
688
740
  .np-text-title-body,
689
741
  .np-text-title-group {
690
- -webkit-hyphens: auto;
691
- hyphens: auto;
742
+ hyphens: auto;
692
743
  hyphenate-limit-chars: 7 3;
693
744
  }
694
745
  @media (min-width: 768px) {
@@ -767,8 +818,7 @@ h6,
767
818
  .np-text-title-subsection,
768
819
  .np-text-title-body,
769
820
  .np-text-title-group {
770
- -webkit-hyphens: auto;
771
- hyphens: auto;
821
+ hyphens: auto;
772
822
  -webkit-hyphenate-limit-before: 3;
773
823
  -webkit-hyphenate-limit-after: 3;
774
824
  }
@@ -951,7 +1001,7 @@ h6,
951
1001
  line-height: var(--line-height-title);
952
1002
  }
953
1003
  .tiny {
954
- color: #454745;
1004
+ color: #5d7079;
955
1005
  color: var(--color-content-secondary);
956
1006
  }
957
1007
  /* DEPRECATED: use .np-text-body-default instead */
@@ -1057,8 +1107,7 @@ a,
1057
1107
  .np-text-display-large,
1058
1108
  .np-text-display-medium,
1059
1109
  .np-text-display-small {
1060
- -webkit-hyphens: auto;
1061
- hyphens: auto;
1110
+ hyphens: auto;
1062
1111
  hyphenate-limit-chars: 7 3;
1063
1112
  }
1064
1113
  @media (min-width: 768px) {
@@ -1083,8 +1132,7 @@ a,
1083
1132
  .np-text-display-large,
1084
1133
  .np-text-display-medium,
1085
1134
  .np-text-display-small {
1086
- -webkit-hyphens: auto;
1087
- hyphens: auto;
1135
+ hyphens: auto;
1088
1136
  -webkit-hyphenate-limit-before: 3;
1089
1137
  -webkit-hyphenate-limit-after: 3;
1090
1138
  }
@@ -1586,19 +1634,21 @@ p + .np-text-title-group {
1586
1634
  }
1587
1635
  .control-1,
1588
1636
  .control-2 {
1637
+ color: #0097c7;
1589
1638
  color: var(--color-content-accent);
1590
1639
  }
1591
1640
  strong,
1592
1641
  b {
1593
1642
  font-weight: 600;
1594
1643
  font-weight: var(--font-weight-semi-bold);
1595
- color: #0e0f0c;
1644
+ color: #37517e;
1596
1645
  color: var(--color-content-primary);
1597
1646
  }
1598
1647
  mark,
1599
1648
  .mark {
1600
1649
  padding: 4px;
1601
1650
  padding: var(--size-4);
1651
+ background-color: rgba(255,172,0,0.10196);
1602
1652
  background-color: var(--color-background-warning);
1603
1653
  }
1604
1654
  address {
@@ -1615,9 +1665,11 @@ blockquote {
1615
1665
  font-size: var(--font-size-16);
1616
1666
  }
1617
1667
  [dir="rtl"] blockquote {
1668
+ border-right: 2px solid #0097c7;
1618
1669
  border-right: 2px solid var(--color-content-accent);
1619
1670
  }
1620
1671
  html:not([dir="rtl"]) blockquote {
1672
+ border-left: 2px solid #0097c7;
1621
1673
  border-left: 2px solid var(--color-content-accent);
1622
1674
  }
1623
1675
  blockquote p {
@@ -1631,7 +1683,7 @@ blockquote ul:last-child {
1631
1683
  }
1632
1684
  blockquote footer {
1633
1685
  display: block;
1634
- color: #454745;
1686
+ color: #5d7079;
1635
1687
  color: var(--color-content-secondary);
1636
1688
  font-size: 0.875rem;
1637
1689
  font-size: var(--font-size-14);
@@ -1674,9 +1726,11 @@ blockquote footer::before {
1674
1726
  text-align: left;
1675
1727
  }
1676
1728
  [dir="rtl"] .blockquote-reverse {
1729
+ border-left: 2px solid #0097c7;
1677
1730
  border-left: 2px solid var(--color-content-accent);
1678
1731
  }
1679
1732
  html:not([dir="rtl"]) .blockquote-reverse {
1733
+ border-right: 2px solid #0097c7;
1680
1734
  border-right: 2px solid var(--color-content-accent);
1681
1735
  }
1682
1736
  [dir="rtl"] .blockquote-reverse {
@@ -1703,7 +1757,7 @@ pre {
1703
1757
  padding: 16px;
1704
1758
  padding: var(--size-16);
1705
1759
  overflow: auto;
1706
- color: #454745;
1760
+ color: #5d7079;
1707
1761
  color: var(--color-content-secondary);
1708
1762
  font-size: 0.875rem;
1709
1763
  font-size: var(--font-size-14);
@@ -1711,7 +1765,7 @@ pre {
1711
1765
  line-height: var(--line-height-body);
1712
1766
  word-wrap: break-word;
1713
1767
  word-break: break-all;
1714
- background-color: rgba(22,51,0,0.07843);
1768
+ background-color: rgba(134,167,189,0.10196);
1715
1769
  background-color: var(--color-background-neutral);
1716
1770
  }
1717
1771
  pre code {
@@ -1725,9 +1779,9 @@ code {
1725
1779
  padding: 2px 4px;
1726
1780
  padding: 2px var(--size-4);
1727
1781
  font-size: 90%;
1728
- color: #454745;
1782
+ color: #5d7079;
1729
1783
  color: var(--color-content-secondary);
1730
- background-color: rgba(22,51,0,0.07843);
1784
+ background-color: rgba(134,167,189,0.10196);
1731
1785
  background-color: var(--color-background-neutral);
1732
1786
  }
1733
1787
  kbd {
@@ -1907,61 +1961,89 @@ kbd kbd {
1907
1961
  font-style: italic !important;
1908
1962
  }
1909
1963
  .text-primary {
1910
- color: #0e0f0c !important;
1964
+ color: #37517e !important;
1911
1965
  color: var(--color-content-primary) !important;
1912
1966
  }
1913
1967
  a.text-primary:hover,
1914
1968
  a.text-primary:focus {
1915
- color: #0e0f0c !important;
1969
+ color: #37517e !important;
1916
1970
  color: var(--color-content-primary) !important;
1917
1971
  }
1972
+ .bg-primary .text-primary {
1973
+ color: #ffffff !important;
1974
+ }
1918
1975
  .text-secondary {
1919
- color: #454745 !important;
1976
+ color: #5d7079 !important;
1920
1977
  color: var(--color-content-secondary) !important;
1921
1978
  }
1922
1979
  .text-positive,
1923
1980
  .text-success {
1981
+ color: #008026 !important;
1924
1982
  color: var(--color-content-positive) !important;
1925
1983
  }
1926
1984
  a.text-positive:hover,
1927
1985
  a.text-success:hover,
1928
1986
  a.text-positive:focus,
1929
1987
  a.text-success:focus {
1988
+ color: #006d13 !important;
1930
1989
  color: var(--color-content-positive-hover) !important;
1931
1990
  }
1991
+ .bg-primary .text-positive,
1992
+ .bg-primary .text-success {
1993
+ color: #6fd698 !important;
1994
+ }
1932
1995
  .text-accent,
1933
1996
  .text-info {
1997
+ color: #0097c7 !important;
1934
1998
  color: var(--color-content-accent) !important;
1935
- color: #163300 !important;
1936
1999
  color: var(--color-interactive-primary) !important;
1937
2000
  }
1938
2001
  a.text-accent:hover,
1939
2002
  a.text-info:hover,
1940
2003
  a.text-accent:focus,
1941
2004
  a.text-info:focus {
2005
+ color: #0084b3 !important;
1942
2006
  color: var(--color-content-accent-hover) !important;
1943
2007
  }
2008
+ .bg-primary .text-accent,
2009
+ .bg-primary .text-info {
2010
+ color: #00b9ff !important;
2011
+ }
1944
2012
  .text-warning {
2013
+ color: #9a6500 !important;
1945
2014
  color: var(--color-content-warning) !important;
1946
2015
  }
1947
2016
  a.text-warning:hover,
1948
2017
  a.text-warning:focus {
2018
+ color: #855400 !important;
1949
2019
  color: var(--color-content-warning-hover) !important;
1950
2020
  }
2021
+ .bg-primary .text-warning {
2022
+ color: #ffd184 !important;
2023
+ }
1951
2024
  .text-negative,
1952
2025
  .text-danger {
1953
- color: #cb272f !important;
1954
2026
  color: var(--color-sentiment-negative) !important;
1955
2027
  }
1956
2028
  a.text-negative:hover,
1957
2029
  a.text-danger:hover,
1958
2030
  a.text-negative:focus,
1959
2031
  a.text-danger:focus {
1960
- color: #b8232b !important;
1961
2032
  color: var(--color-sentiment-negative-hover) !important;
1962
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
+ }
1963
2045
  .text-muted {
1964
- color: #6a6c6a !important;
2046
+ color: #768e9c !important;
1965
2047
  color: var(--color-content-tertiary) !important;
1966
2048
  }
1967
2049
  .colored-dot::after {