@department-of-veterans-affairs/css-library 0.15.0 → 0.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/stylesheets/_mixins.scss +2 -3
- package/dist/stylesheets/base/headings.css +1 -1
- package/dist/stylesheets/base/utils.css +2 -2
- package/dist/stylesheets/base/va.css +93 -1530
- package/dist/stylesheets/core.css +3987 -3574
- package/dist/stylesheets/formation-overrides/_variables.scss +1 -1
- package/dist/stylesheets/formation-overrides/core/base.css +6 -6
- package/dist/stylesheets/formation-overrides/elements/buttons.css +1 -1
- package/dist/stylesheets/formation-overrides/elements/inputs.css +5 -5
- package/dist/stylesheets/formation-overrides/elements/typography.css +8 -4
- package/dist/stylesheets/modules/m-alert.css +9 -5
- package/dist/stylesheets/modules/m-emergency-banner.css +1 -1
- package/dist/stylesheets/modules/m-form-process.css +1 -1
- package/dist/stylesheets/modules/m-loading-indicator.css +9 -5
- package/dist/stylesheets/modules/m-maintenance-banner.css +1 -1
- package/dist/stylesheets/modules/m-megamenu.css +2 -2
- package/dist/stylesheets/modules/m-modal.css +10 -6
- package/dist/stylesheets/modules/m-nav-sidebar.css +8 -4
- package/dist/stylesheets/shame.css +5 -4
- package/dist/stylesheets/utilities.css +1 -1
- package/dist/tokens/css/variables.css +9 -3
- package/dist/tokens/json/variables.json +110 -4
- package/dist/tokens/scss/variables.scss +9 -3
- package/package.json +1 -1
|
@@ -108,7 +108,7 @@ $lead-max-width: scale-rem(77rem);
|
|
|
108
108
|
$site-margins-mobile: scale-rem(1.5rem);
|
|
109
109
|
$nav-width: 951px;
|
|
110
110
|
$site-margins: scale-rem(3rem);
|
|
111
|
-
$site-max-width:
|
|
111
|
+
$site-max-width: 1000px;
|
|
112
112
|
|
|
113
113
|
$sidenav-current-border-width: scale-rem(0.4rem);
|
|
114
114
|
|
|
@@ -44,21 +44,21 @@ input:not([disabled]):focus,
|
|
|
44
44
|
select:not([disabled]):focus,
|
|
45
45
|
textarea:not([disabled]):focus,
|
|
46
46
|
button:not([disabled]):focus {
|
|
47
|
-
outline: 2px
|
|
48
|
-
outline-offset:
|
|
47
|
+
outline: 2px solid #face00;
|
|
48
|
+
outline-offset: 2px;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
iframe:focus,
|
|
52
52
|
[href]:focus,
|
|
53
53
|
[tabindex]:focus,
|
|
54
54
|
[contentEditable=true]:focus {
|
|
55
|
-
outline: 2px
|
|
56
|
-
outline-offset:
|
|
55
|
+
outline: 2px solid #face00;
|
|
56
|
+
outline-offset: 2px;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.usa-focus {
|
|
60
|
-
outline: 2px
|
|
61
|
-
outline-offset:
|
|
60
|
+
outline: 2px solid #face00;
|
|
61
|
+
outline-offset: 2px;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
/*# sourceMappingURL=base.css.map */
|
|
@@ -47,7 +47,7 @@ button,
|
|
|
47
47
|
color: #ffffff;
|
|
48
48
|
cursor: pointer;
|
|
49
49
|
display: inline-block;
|
|
50
|
-
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
50
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
51
51
|
font-size: 16px;
|
|
52
52
|
font-weight: 700;
|
|
53
53
|
line-height: 1;
|
|
@@ -160,7 +160,7 @@ legend {
|
|
|
160
160
|
|
|
161
161
|
.usa-form-hint {
|
|
162
162
|
color: #757575;
|
|
163
|
-
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
163
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
164
164
|
margin-bottom: 0;
|
|
165
165
|
}
|
|
166
166
|
|
|
@@ -233,8 +233,8 @@ legend {
|
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
[type=radio]:focus + label::before {
|
|
236
|
-
outline: 2px
|
|
237
|
-
outline-offset:
|
|
236
|
+
outline: 2px solid #face00;
|
|
237
|
+
outline-offset: 4px;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
[type=checkbox]:disabled + label {
|
|
@@ -242,8 +242,8 @@ legend {
|
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
[type=checkbox]:focus + label::before {
|
|
245
|
-
outline: 2px
|
|
246
|
-
outline-offset:
|
|
245
|
+
outline: 2px solid #face00;
|
|
246
|
+
outline-offset: 2px;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
[type=checkbox]:disabled + label::before,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
html {
|
|
33
|
-
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
33
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
34
34
|
font-size: 16px;
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -52,8 +52,8 @@ a:hover, a:active {
|
|
|
52
52
|
color: #1a4480;
|
|
53
53
|
}
|
|
54
54
|
a:focus {
|
|
55
|
-
outline: 2px
|
|
56
|
-
outline-offset:
|
|
55
|
+
outline: 2px solid #face00;
|
|
56
|
+
outline-offset: 2px;
|
|
57
57
|
}
|
|
58
58
|
a:visited {
|
|
59
59
|
color: #54278f;
|
|
@@ -176,6 +176,10 @@ dfn {
|
|
|
176
176
|
font-style: normal;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
+
.usa-content {
|
|
180
|
+
max-width: 43.75rem;
|
|
181
|
+
}
|
|
182
|
+
|
|
179
183
|
.usa-content p,
|
|
180
184
|
.usa-content ul:not(.usa-accordion):not(.usa-accordion-bordered),
|
|
181
185
|
.usa-content ol:not(.usa-accordion):not(.usa-accordion-bordered) {
|
|
@@ -190,7 +194,7 @@ dfn {
|
|
|
190
194
|
.usa-sans a,
|
|
191
195
|
.usa-sans li,
|
|
192
196
|
.usa-sans span {
|
|
193
|
-
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
197
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
194
198
|
}
|
|
195
199
|
.usa-sans a {
|
|
196
200
|
border-bottom: none;
|
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
Variables ported over from Formation so that we can keep those stylesheets
|
|
7
7
|
working while we work on deprecation.
|
|
8
8
|
**/
|
|
9
|
+
/**
|
|
10
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
11
|
+
working while we work on deprecation.
|
|
12
|
+
**/
|
|
9
13
|
/**
|
|
10
14
|
/uswds/dist/scss/lib/addons/_margin.scss
|
|
11
15
|
**/
|
|
@@ -18,7 +22,7 @@
|
|
|
18
22
|
border-left-style: solid;
|
|
19
23
|
border-left-width: 10px;
|
|
20
24
|
display: table;
|
|
21
|
-
padding:
|
|
25
|
+
padding: 2rem 4rem 2rem 1.5rem;
|
|
22
26
|
width: 100%;
|
|
23
27
|
}
|
|
24
28
|
.usa-alert::before {
|
|
@@ -53,7 +57,7 @@
|
|
|
53
57
|
padding-top: 0;
|
|
54
58
|
}
|
|
55
59
|
.usa-alert-text {
|
|
56
|
-
margin-top:
|
|
60
|
+
margin-top: 1.25rem;
|
|
57
61
|
}
|
|
58
62
|
.usa-alert-text:only-child {
|
|
59
63
|
margin: 0;
|
|
@@ -66,10 +70,10 @@
|
|
|
66
70
|
margin-bottom: 0;
|
|
67
71
|
}
|
|
68
72
|
.usa-alert-text .usa-alert-heading + p:only-of-type {
|
|
69
|
-
margin-top:
|
|
73
|
+
margin-top: 1.25rem;
|
|
70
74
|
}
|
|
71
75
|
.usa-alert-text ul {
|
|
72
|
-
padding-left:
|
|
76
|
+
padding-left: 1.25rem;
|
|
73
77
|
}
|
|
74
78
|
.usa-alert-info {
|
|
75
79
|
border-left-color: #00a6d2;
|
|
@@ -124,7 +128,7 @@
|
|
|
124
128
|
font-size: 1.40625rem;
|
|
125
129
|
padding: 0;
|
|
126
130
|
position: absolute;
|
|
127
|
-
margin:
|
|
131
|
+
margin: 1rem;
|
|
128
132
|
right: 0;
|
|
129
133
|
top: 0;
|
|
130
134
|
width: auto;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
margin-right: -22.5px;
|
|
15
15
|
}
|
|
16
16
|
.vads-c-emergency-banner .usa-alert .usa-alert-heading {
|
|
17
|
-
font-family: "Source Sans Pro";
|
|
17
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
18
18
|
font-size: 1rem;
|
|
19
19
|
margin-top: 4px;
|
|
20
20
|
margin-left: 30.5px;
|
|
@@ -2,19 +2,23 @@
|
|
|
2
2
|
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
3
|
working while we work on deprecation.
|
|
4
4
|
**/
|
|
5
|
+
/**
|
|
6
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
7
|
+
working while we work on deprecation.
|
|
8
|
+
**/
|
|
5
9
|
.loading-indicator-container {
|
|
6
10
|
text-align: center;
|
|
7
11
|
}
|
|
8
12
|
.loading-indicator-container .loading-indicator {
|
|
9
13
|
display: block;
|
|
10
|
-
height:
|
|
11
|
-
margin-top:
|
|
14
|
+
height: 4rem;
|
|
15
|
+
margin-top: 1rem;
|
|
12
16
|
}
|
|
13
17
|
.loading-indicator-container .loading-indicator:after {
|
|
14
18
|
content: " ";
|
|
15
19
|
display: inline-block;
|
|
16
|
-
width:
|
|
17
|
-
height:
|
|
20
|
+
width: 3.5rem;
|
|
21
|
+
height: 3.5rem;
|
|
18
22
|
margin: 1px;
|
|
19
23
|
border-radius: 50%;
|
|
20
24
|
border: 8px solid #005ea2;
|
|
@@ -26,7 +30,7 @@
|
|
|
26
30
|
}
|
|
27
31
|
|
|
28
32
|
.async-loader {
|
|
29
|
-
padding-bottom:
|
|
33
|
+
padding-bottom: 0.5rem;
|
|
30
34
|
}
|
|
31
35
|
|
|
32
36
|
@keyframes spin {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
margin-right: -22.5px;
|
|
15
15
|
}
|
|
16
16
|
.vads-c-maintenance-banner .usa-alert .usa-alert-heading {
|
|
17
|
-
font-family: "Source Sans Pro";
|
|
17
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
18
18
|
font-size: 1rem;
|
|
19
19
|
margin-top: 4px;
|
|
20
20
|
margin-left: 30.5px;
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
.mega-menu .vetnav-panel--submenu:not([hidden]) h3 {
|
|
109
109
|
display: block;
|
|
110
110
|
color: #000000;
|
|
111
|
-
font-family: Source Sans Pro, sans
|
|
111
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
112
112
|
font-size: 16px;
|
|
113
113
|
font-weight: bold;
|
|
114
114
|
margin-top: 4px;
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
}
|
|
264
264
|
#mega-menu .vetnav-panel--submenu:not([hidden]) h3,
|
|
265
265
|
.mega-menu .vetnav-panel--submenu:not([hidden]) h3 {
|
|
266
|
-
font-family: Source Sans Pro, sans
|
|
266
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
267
267
|
font-size: 16px;
|
|
268
268
|
}
|
|
269
269
|
}
|
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
Variables ported over from Formation so that we can keep those stylesheets
|
|
7
7
|
working while we work on deprecation.
|
|
8
8
|
**/
|
|
9
|
+
/**
|
|
10
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
11
|
+
working while we work on deprecation.
|
|
12
|
+
**/
|
|
9
13
|
/**
|
|
10
14
|
/uswds/dist/scss/lib/addons/_margin.scss
|
|
11
15
|
**/
|
|
@@ -33,14 +37,14 @@
|
|
|
33
37
|
}
|
|
34
38
|
}
|
|
35
39
|
.va-modal .va-modal-body {
|
|
36
|
-
margin-right:
|
|
40
|
+
margin-right: 1.25rem;
|
|
37
41
|
}
|
|
38
42
|
.va-modal .va-modal-body p:first-of-type {
|
|
39
43
|
margin-top: 0;
|
|
40
44
|
}
|
|
41
45
|
.va-modal-title {
|
|
42
46
|
margin: 0;
|
|
43
|
-
margin-bottom:
|
|
47
|
+
margin-bottom: 1rem;
|
|
44
48
|
}
|
|
45
49
|
.va-modal-inner {
|
|
46
50
|
background: #ffffff;
|
|
@@ -62,17 +66,17 @@
|
|
|
62
66
|
max-width: 37.5rem;
|
|
63
67
|
}
|
|
64
68
|
.va-modal-alert .alert-actions {
|
|
65
|
-
margin-top:
|
|
69
|
+
margin-top: 1.5rem;
|
|
66
70
|
}
|
|
67
71
|
.va-modal-alert .alert-actions button {
|
|
68
72
|
margin: 0;
|
|
69
73
|
}
|
|
70
74
|
.va-modal-alert .alert-actions button + button {
|
|
71
|
-
margin-left:
|
|
75
|
+
margin-left: 1.25rem;
|
|
72
76
|
}
|
|
73
77
|
.va-modal-body {
|
|
74
78
|
overflow-wrap: break-word;
|
|
75
|
-
padding:
|
|
79
|
+
padding: 1.25rem;
|
|
76
80
|
word-break: break-word;
|
|
77
81
|
word-wrap: break-word;
|
|
78
82
|
}
|
|
@@ -99,7 +103,7 @@ button.va-modal-close {
|
|
|
99
103
|
font-size: 1.40625rem;
|
|
100
104
|
padding: 0;
|
|
101
105
|
position: absolute;
|
|
102
|
-
margin:
|
|
106
|
+
margin: 1rem;
|
|
103
107
|
right: 0;
|
|
104
108
|
top: 0;
|
|
105
109
|
width: auto;
|
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
Variables ported over from Formation so that we can keep those stylesheets
|
|
8
8
|
working while we work on deprecation.
|
|
9
9
|
**/
|
|
10
|
+
/**
|
|
11
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
12
|
+
working while we work on deprecation.
|
|
13
|
+
**/
|
|
10
14
|
/**
|
|
11
15
|
/uswds/dist/scss/lib/addons/_margin.scss
|
|
12
16
|
**/
|
|
@@ -233,7 +237,7 @@
|
|
|
233
237
|
font-size: 15px;
|
|
234
238
|
}
|
|
235
239
|
.va-sidebarnav .usa-sidenav-sub_list a:focus {
|
|
236
|
-
outline: 2px
|
|
240
|
+
outline: 2px solid #face00;
|
|
237
241
|
outline-offset: 0px;
|
|
238
242
|
}
|
|
239
243
|
.va-sidebarnav .usa-sidenav-sub_list a:hover, .va-sidebarnav .usa-sidenav-sub_list a:focus {
|
|
@@ -305,13 +309,13 @@
|
|
|
305
309
|
.va-btn-sidebarnav-trigger .button-wrapper {
|
|
306
310
|
position: absolute;
|
|
307
311
|
width: 100%;
|
|
308
|
-
padding:
|
|
312
|
+
padding: 0.5rem 0.5rem 1rem;
|
|
309
313
|
}
|
|
310
314
|
.va-btn-sidebarnav-trigger button {
|
|
311
315
|
background-color: #ffffff;
|
|
312
316
|
color: #005ea2;
|
|
313
317
|
margin: 0;
|
|
314
|
-
padding:
|
|
318
|
+
padding: 0.75rem;
|
|
315
319
|
border: 1px solid #005ea2;
|
|
316
320
|
border-radius: 4px;
|
|
317
321
|
width: 100%;
|
|
@@ -320,7 +324,7 @@
|
|
|
320
324
|
justify-content: space-between;
|
|
321
325
|
}
|
|
322
326
|
.va-btn-sidebarnav-trigger button strong {
|
|
323
|
-
line-height:
|
|
327
|
+
line-height: 1.25rem;
|
|
324
328
|
}
|
|
325
329
|
.va-btn-sidebarnav-trigger button svg {
|
|
326
330
|
fill: #005ea2;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
**/
|
|
19
19
|
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
20
20
|
[type=submit] {
|
|
21
|
-
margin-top: calc(
|
|
21
|
+
margin-top: calc(1.875rem - 0.2em);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -30,7 +30,7 @@ fieldset {
|
|
|
30
30
|
|
|
31
31
|
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
32
32
|
.usa-form {
|
|
33
|
-
max-width:
|
|
33
|
+
max-width: 32rem;
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -48,7 +48,7 @@ fieldset {
|
|
|
48
48
|
|
|
49
49
|
.usa-form-note {
|
|
50
50
|
float: right;
|
|
51
|
-
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
51
|
+
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
52
52
|
font-size: 0.9375rem;
|
|
53
53
|
margin: 0 0 scale(1.5rem);
|
|
54
54
|
}
|
|
@@ -152,6 +152,7 @@ fieldset {
|
|
|
152
152
|
**/
|
|
153
153
|
body .row {
|
|
154
154
|
max-width: 62.5em;
|
|
155
|
+
margin: 0 auto;
|
|
155
156
|
}
|
|
156
157
|
body .row-padded {
|
|
157
158
|
max-width: 62.5rem;
|
|
@@ -161,7 +162,7 @@ body .row-padded {
|
|
|
161
162
|
|
|
162
163
|
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
163
164
|
.form-panel {
|
|
164
|
-
max-width:
|
|
165
|
+
max-width: 32rem;
|
|
165
166
|
}
|
|
166
167
|
}
|
|
167
168
|
|
|
@@ -5796,7 +5796,7 @@ through all possible variants
|
|
|
5796
5796
|
}
|
|
5797
5797
|
|
|
5798
5798
|
.vads-u-font-family--sans {
|
|
5799
|
-
font-family: Source Sans Pro, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif !important;
|
|
5799
|
+
font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif !important;
|
|
5800
5800
|
}
|
|
5801
5801
|
|
|
5802
5802
|
.vads-u-font-family--serif {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 12 Dec 2024 18:40:51 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -103,6 +103,10 @@
|
|
|
103
103
|
--vads-color-action-surface-destructive-on-dark: #fb5a47;
|
|
104
104
|
--vads-color-action-border-base-active-on-light: #2e2e2e;
|
|
105
105
|
--vads-color-action-border-base-active-on-dark: #adadad;
|
|
106
|
+
--vads-color-feedback-foreground-success-on-dark: #21c834;
|
|
107
|
+
--vads-color-feedback-foreground-success-on-light: #008817;
|
|
108
|
+
--vads-color-feedback-foreground-warning-on-dark: #e5a000;
|
|
109
|
+
--vads-color-feedback-foreground-warning-on-light: #c2850c;
|
|
106
110
|
--vads-color-feedback-surface-info-on-dark: #112f4e;
|
|
107
111
|
--vads-color-feedback-surface-success-on-dark: #19311e;
|
|
108
112
|
--vads-color-feedback-surface-warning-on-dark: #422d19;
|
|
@@ -111,10 +115,10 @@
|
|
|
111
115
|
--vads-color-background-default-on-dark: #171716;
|
|
112
116
|
--vads-color-forms-surface-active-on-light: #ecf1f7;
|
|
113
117
|
--vads-color-forms-surface-active-on-dark: #252f3e;
|
|
114
|
-
--font-family-sans: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
118
|
+
--font-family-sans: 'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
115
119
|
--font-family-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
116
120
|
--font-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
117
|
-
--font-source-sans: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
121
|
+
--font-source-sans: 'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
118
122
|
--font-weight-normal: 400;
|
|
119
123
|
--font-weight-bold: 700;
|
|
120
124
|
--font-style-normal: normal;
|
|
@@ -226,6 +230,7 @@
|
|
|
226
230
|
--uswds-system-color-gold-vivid-10: #ffe396;
|
|
227
231
|
--uswds-system-color-gold-vivid-20: #ffbe2e;
|
|
228
232
|
--uswds-system-color-gold-vivid-30: #e5a000;
|
|
233
|
+
--uswds-system-color-gold-vivid-40: #c2850c;
|
|
229
234
|
--uswds-system-color-gold-vivid-50: #936f38;
|
|
230
235
|
--uswds-system-color-gray-1: #fcfcfc;
|
|
231
236
|
--uswds-system-color-gray-2: #f9f9f9;
|
|
@@ -265,6 +270,7 @@
|
|
|
265
270
|
--uswds-system-color-green-cool-40: #5e9f69;
|
|
266
271
|
--uswds-system-color-green-cool-50: #4d8055;
|
|
267
272
|
--uswds-system-color-green-cool-vivid-20: #70e17b;
|
|
273
|
+
--uswds-system-color-green-cool-vivid-30: #21c834;
|
|
268
274
|
--uswds-system-color-green-cool-vivid-40: #00a91c;
|
|
269
275
|
--uswds-system-color-green-cool-vivid-50: #008817;
|
|
270
276
|
--uswds-system-color-green-cool-vivid-60: #216e1f;
|
|
@@ -1838,6 +1838,82 @@
|
|
|
1838
1838
|
]
|
|
1839
1839
|
}
|
|
1840
1840
|
},
|
|
1841
|
+
"vads-color-feedback-foreground-success-on-dark": {
|
|
1842
|
+
"*": {
|
|
1843
|
+
"value": "#21c834",
|
|
1844
|
+
"filePath": "tokens/color.json",
|
|
1845
|
+
"isSource": true,
|
|
1846
|
+
"original": {
|
|
1847
|
+
"value": "{uswds-system-color-green-cool-vivid-30}"
|
|
1848
|
+
},
|
|
1849
|
+
"name": "vads-color-feedback-foreground-success-on-dark",
|
|
1850
|
+
"attributes": {
|
|
1851
|
+
"category": "vads-color-feedback-foreground-success-on-dark",
|
|
1852
|
+
"type": "*"
|
|
1853
|
+
},
|
|
1854
|
+
"path": [
|
|
1855
|
+
"vads-color-feedback-foreground-success-on-dark",
|
|
1856
|
+
"*"
|
|
1857
|
+
]
|
|
1858
|
+
}
|
|
1859
|
+
},
|
|
1860
|
+
"vads-color-feedback-foreground-success-on-light": {
|
|
1861
|
+
"*": {
|
|
1862
|
+
"value": "#008817",
|
|
1863
|
+
"filePath": "tokens/color.json",
|
|
1864
|
+
"isSource": true,
|
|
1865
|
+
"original": {
|
|
1866
|
+
"value": "{uswds-system-color-green-cool-vivid-50}"
|
|
1867
|
+
},
|
|
1868
|
+
"name": "vads-color-feedback-foreground-success-on-light",
|
|
1869
|
+
"attributes": {
|
|
1870
|
+
"category": "vads-color-feedback-foreground-success-on-light",
|
|
1871
|
+
"type": "*"
|
|
1872
|
+
},
|
|
1873
|
+
"path": [
|
|
1874
|
+
"vads-color-feedback-foreground-success-on-light",
|
|
1875
|
+
"*"
|
|
1876
|
+
]
|
|
1877
|
+
}
|
|
1878
|
+
},
|
|
1879
|
+
"vads-color-feedback-foreground-warning-on-dark": {
|
|
1880
|
+
"*": {
|
|
1881
|
+
"value": "#e5a000",
|
|
1882
|
+
"filePath": "tokens/color.json",
|
|
1883
|
+
"isSource": true,
|
|
1884
|
+
"original": {
|
|
1885
|
+
"value": "{uswds-system-color-gold-vivid-30}"
|
|
1886
|
+
},
|
|
1887
|
+
"name": "vads-color-feedback-foreground-warning-on-dark",
|
|
1888
|
+
"attributes": {
|
|
1889
|
+
"category": "vads-color-feedback-foreground-warning-on-dark",
|
|
1890
|
+
"type": "*"
|
|
1891
|
+
},
|
|
1892
|
+
"path": [
|
|
1893
|
+
"vads-color-feedback-foreground-warning-on-dark",
|
|
1894
|
+
"*"
|
|
1895
|
+
]
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1898
|
+
"vads-color-feedback-foreground-warning-on-light": {
|
|
1899
|
+
"*": {
|
|
1900
|
+
"value": "#c2850c",
|
|
1901
|
+
"filePath": "tokens/color.json",
|
|
1902
|
+
"isSource": true,
|
|
1903
|
+
"original": {
|
|
1904
|
+
"value": "{uswds-system-color-gold-vivid-40}"
|
|
1905
|
+
},
|
|
1906
|
+
"name": "vads-color-feedback-foreground-warning-on-light",
|
|
1907
|
+
"attributes": {
|
|
1908
|
+
"category": "vads-color-feedback-foreground-warning-on-light",
|
|
1909
|
+
"type": "*"
|
|
1910
|
+
},
|
|
1911
|
+
"path": [
|
|
1912
|
+
"vads-color-feedback-foreground-warning-on-light",
|
|
1913
|
+
"*"
|
|
1914
|
+
]
|
|
1915
|
+
}
|
|
1916
|
+
},
|
|
1841
1917
|
"vads-color-feedback-surface-info-on-dark": {
|
|
1842
1918
|
"*": {
|
|
1843
1919
|
"value": "#112f4e",
|
|
@@ -1993,11 +2069,11 @@
|
|
|
1993
2069
|
"font": {
|
|
1994
2070
|
"family": {
|
|
1995
2071
|
"sans": {
|
|
1996
|
-
"value": "'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif",
|
|
2072
|
+
"value": "'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif",
|
|
1997
2073
|
"filePath": "tokens/fonts.json",
|
|
1998
2074
|
"isSource": true,
|
|
1999
2075
|
"original": {
|
|
2000
|
-
"value": "'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif"
|
|
2076
|
+
"value": "'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif"
|
|
2001
2077
|
},
|
|
2002
2078
|
"name": "font-family-sans",
|
|
2003
2079
|
"attributes": {
|
|
@@ -2050,11 +2126,11 @@
|
|
|
2050
2126
|
},
|
|
2051
2127
|
"source": {
|
|
2052
2128
|
"sans": {
|
|
2053
|
-
"value": "'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif",
|
|
2129
|
+
"value": "'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif",
|
|
2054
2130
|
"filePath": "tokens/fonts.json",
|
|
2055
2131
|
"isSource": true,
|
|
2056
2132
|
"original": {
|
|
2057
|
-
"value": "'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif"
|
|
2133
|
+
"value": "'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif"
|
|
2058
2134
|
},
|
|
2059
2135
|
"name": "font-source-sans",
|
|
2060
2136
|
"attributes": {
|
|
@@ -4023,6 +4099,21 @@
|
|
|
4023
4099
|
"uswds-system-color-gold-vivid-30"
|
|
4024
4100
|
]
|
|
4025
4101
|
},
|
|
4102
|
+
"uswds-system-color-gold-vivid-40": {
|
|
4103
|
+
"value": "#c2850c",
|
|
4104
|
+
"filePath": "tokens/uswds.json",
|
|
4105
|
+
"isSource": true,
|
|
4106
|
+
"original": {
|
|
4107
|
+
"value": "#c2850c"
|
|
4108
|
+
},
|
|
4109
|
+
"name": "uswds-system-color-gold-vivid-40",
|
|
4110
|
+
"attributes": {
|
|
4111
|
+
"category": "uswds-system-color-gold-vivid-40"
|
|
4112
|
+
},
|
|
4113
|
+
"path": [
|
|
4114
|
+
"uswds-system-color-gold-vivid-40"
|
|
4115
|
+
]
|
|
4116
|
+
},
|
|
4026
4117
|
"uswds-system-color-gold-vivid-50": {
|
|
4027
4118
|
"value": "#936f38",
|
|
4028
4119
|
"filePath": "tokens/uswds.json",
|
|
@@ -4608,6 +4699,21 @@
|
|
|
4608
4699
|
"uswds-system-color-green-cool-vivid-20"
|
|
4609
4700
|
]
|
|
4610
4701
|
},
|
|
4702
|
+
"uswds-system-color-green-cool-vivid-30": {
|
|
4703
|
+
"value": "#21c834",
|
|
4704
|
+
"filePath": "tokens/uswds.json",
|
|
4705
|
+
"isSource": true,
|
|
4706
|
+
"original": {
|
|
4707
|
+
"value": "#21c834"
|
|
4708
|
+
},
|
|
4709
|
+
"name": "uswds-system-color-green-cool-vivid-30",
|
|
4710
|
+
"attributes": {
|
|
4711
|
+
"category": "uswds-system-color-green-cool-vivid-30"
|
|
4712
|
+
},
|
|
4713
|
+
"path": [
|
|
4714
|
+
"uswds-system-color-green-cool-vivid-30"
|
|
4715
|
+
]
|
|
4716
|
+
},
|
|
4611
4717
|
"uswds-system-color-green-cool-vivid-40": {
|
|
4612
4718
|
"value": "#00a91c",
|
|
4613
4719
|
"filePath": "tokens/uswds.json",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Thu, 12 Dec 2024 18:40:51 GMT
|
|
4
4
|
|
|
5
5
|
$xsmall-screen: 320px;
|
|
6
6
|
$small-screen: 481px;
|
|
@@ -101,6 +101,10 @@ $vads-color-action-surface-default-on-dark: #58b4ff;
|
|
|
101
101
|
$vads-color-action-surface-destructive-on-dark: #fb5a47;
|
|
102
102
|
$vads-color-action-border-base-active-on-light: #2e2e2e;
|
|
103
103
|
$vads-color-action-border-base-active-on-dark: #adadad;
|
|
104
|
+
$vads-color-feedback-foreground-success-on-dark: #21c834;
|
|
105
|
+
$vads-color-feedback-foreground-success-on-light: #008817;
|
|
106
|
+
$vads-color-feedback-foreground-warning-on-dark: #e5a000;
|
|
107
|
+
$vads-color-feedback-foreground-warning-on-light: #c2850c;
|
|
104
108
|
$vads-color-feedback-surface-info-on-dark: #112f4e;
|
|
105
109
|
$vads-color-feedback-surface-success-on-dark: #19311e;
|
|
106
110
|
$vads-color-feedback-surface-warning-on-dark: #422d19;
|
|
@@ -109,10 +113,10 @@ $vads-color-feedback-border-warning-on-dark: #face00;
|
|
|
109
113
|
$vads-color-background-default-on-dark: #171716;
|
|
110
114
|
$vads-color-forms-surface-active-on-light: #ecf1f7;
|
|
111
115
|
$vads-color-forms-surface-active-on-dark: #252f3e;
|
|
112
|
-
$font-family-sans: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
116
|
+
$font-family-sans: 'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
113
117
|
$font-family-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
114
118
|
$font-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
115
|
-
$font-source-sans: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
119
|
+
$font-source-sans: 'Source Sans Pro Web', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
116
120
|
$font-weight-normal: 400;
|
|
117
121
|
$font-weight-bold: 700;
|
|
118
122
|
$font-style-normal: normal;
|
|
@@ -224,6 +228,7 @@ $uswds-system-color-gold-vivid-5: #fef0c8;
|
|
|
224
228
|
$uswds-system-color-gold-vivid-10: #ffe396;
|
|
225
229
|
$uswds-system-color-gold-vivid-20: #ffbe2e;
|
|
226
230
|
$uswds-system-color-gold-vivid-30: #e5a000;
|
|
231
|
+
$uswds-system-color-gold-vivid-40: #c2850c;
|
|
227
232
|
$uswds-system-color-gold-vivid-50: #936f38;
|
|
228
233
|
$uswds-system-color-gray-1: #fcfcfc;
|
|
229
234
|
$uswds-system-color-gray-2: #f9f9f9;
|
|
@@ -263,6 +268,7 @@ $uswds-system-color-green-cool-20: #b4d0b9;
|
|
|
263
268
|
$uswds-system-color-green-cool-40: #5e9f69;
|
|
264
269
|
$uswds-system-color-green-cool-50: #4d8055;
|
|
265
270
|
$uswds-system-color-green-cool-vivid-20: #70e17b;
|
|
271
|
+
$uswds-system-color-green-cool-vivid-30: #21c834;
|
|
266
272
|
$uswds-system-color-green-cool-vivid-40: #00a91c;
|
|
267
273
|
$uswds-system-color-green-cool-vivid-50: #008817;
|
|
268
274
|
$uswds-system-color-green-cool-vivid-60: #216e1f;
|