2022-11-04 15:07:40 -04:00
|
|
|
// @use '@carbon/react/scss/themes';
|
|
|
|
// @use '@carbon/react/scss/theme' with ($theme: themes.$g100);
|
2022-11-07 14:23:19 -05:00
|
|
|
|
|
|
|
@use '@carbon/react/scss/theme' with
|
|
|
|
(
|
|
|
|
$theme: (
|
|
|
|
cds-link-text-color: #525252
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2022-10-31 14:50:19 -04:00
|
|
|
@use '@carbon/react';
|
2022-11-01 16:26:24 -04:00
|
|
|
@use '@carbon/styles';
|
|
|
|
// @include grid.flex-grid();
|
2022-11-04 22:44:38 -04:00
|
|
|
|
2022-11-07 14:23:19 -05:00
|
|
|
@use '@carbon/colors';
|
2022-11-04 22:44:38 -04:00
|
|
|
// @use '@carbon/react/scss/colors';
|
2022-11-07 14:23:19 -05:00
|
|
|
@use '@carbon/react/scss/themes';
|
|
|
|
|
|
|
|
// var(--cds-link-text-color, var(--cds-link-primary, #0f62fe))
|
2022-11-07 10:10:47 -05:00
|
|
|
|
|
|
|
// site is mainly using white theme.
|
|
|
|
// header is mainly using g100
|
|
|
|
// mockup wanted white, not grey, text
|
|
|
|
.cds--header, a.cds--header__menu-item {
|
|
|
|
// background-color: colors.$gray-100;
|
|
|
|
color: white;
|
|
|
|
}
|
2022-11-07 14:23:19 -05:00
|
|
|
|
|
|
|
.cds--breadcrumb-item a.cds--link:hover {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
.cds--breadcrumb-item a.cds--link:visited {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
.cds--breadcrumb-item a.cds--link:visited:hover {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
.cds--breadcrumb-item a.cds--link {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
|