File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed
Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 1313
1414.usa-section--dark {
1515 background-color : color (" primary-darker" );
16- color : color (" white " );
16+ color : color ($theme-text-reverse-color );
1717
1818 h1 ,
1919 h2 ,
2020 h3 ,
2121 h4 ,
2222 h5 ,
2323 h6 {
24+ // TODO: This should use a theme-able color,
25+ // and should probably default to white
2426 color : color (" accent-cool" );
2527 }
2628
2729 p {
28- color : color (" white " );
30+ color : color ($theme-text-reverse-color );
2931 }
3032
3133 a {
Original file line number Diff line number Diff line change @@ -111,9 +111,9 @@ $button-stroke: inset 0 0 0 units($theme-button-stroke-width);
111111 }
112112
113113 & .usa-button--inverse {
114- $button-inverse-color : " base-lighter " ;
115- $button-inverse-hover-color : " base-lightest " ;
116- $button-inverse-active-color : " white " ;
114+ $button-inverse-color : $theme-link-reverse-color ;
115+ $button-inverse-hover-color : $theme-link-reverse-hover-color ;
116+ $button-inverse-active-color : $theme-link-reverse-active-color ;
117117
118118 box-shadow : $button-stroke color (" base-lighter" );
119119 color : color ($button-inverse-color );
Original file line number Diff line number Diff line change 4141
4242 p ,
4343 span {
44- color : color (" white " );
44+ color : color ($theme-text-reverse-color );
4545 }
4646
4747 a {
48- color : color (" base-lighter " );
48+ color : color ($theme-link-reverse-color );
4949
5050 & :visited {
51- color : color (" base-lighter " );
51+ color : color ($theme-link-reverse-color );
5252 }
5353
5454 & :hover {
55- color : color (" white " );
55+ color : color ($theme-link-reverse-hover-color );
5656 }
5757 }
5858}
You can’t perform that action at this time.
0 commit comments