Skip to content

Commit

Permalink
🔧 chore(modifiers.scss): Update text color to darker shade, add !impo…
Browse files Browse the repository at this point in the history
…rtant to transparent modifier classes
  • Loading branch information
Spiderpig86 committed Mar 1, 2022
1 parent c6e7f1d commit cea9b3c
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 27 deletions.
14 changes: 7 additions & 7 deletions dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
*/
:root {
/* v1 Colors */
--cirrus-fg: #374054;
--cirrus-fg: #0f172a;
--cirrus-bg: #ffffff;
--cirrus-select-bg: rgba(0, 161, 255, 0.2);
--cirrus-code-bg: rgba(255, 218, 221, 1);
Expand Down Expand Up @@ -6146,12 +6146,12 @@ video.video-fullscreen {
}

.bg-transparent {
background-color: transparent;
background-color: transparent !important;
}

.text-transparent {
border-color: transparent;
color: transparent;
border-color: transparent !important;
color: transparent !important;
}

/* v2 */
Expand Down Expand Up @@ -12742,12 +12742,12 @@ label:last-child:not(:first-child):not(.form-group-label) {
padding: 0 1rem;
}
.frame .frame__title {
color: #374054;
color: #0f172a;
font-size: 1rem;
margin: 0.75rem auto 0;
}
.frame .frame__subtitle {
color: rgba(55, 64, 84, 0.6);
color: rgba(15, 23, 42, 0.6);
font-size: 1rem;
margin: 0 auto 0.75rem;
}
Expand Down Expand Up @@ -17406,7 +17406,7 @@ ul .divider::after {
pointer-events: none;
}
.breadcrumb .breadcrumb__item.breadcrumb__item--active a {
color: #374054;
color: #0f172a;
}

/* CARDS */
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-all.min.css

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/cirrus-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
*/
:root {
/* v1 Colors */
--cirrus-fg: #374054;
--cirrus-fg: #0f172a;
--cirrus-bg: #ffffff;
--cirrus-select-bg: rgba(0, 161, 255, 0.2);
--cirrus-code-bg: rgba(255, 218, 221, 1);
Expand Down Expand Up @@ -4645,12 +4645,12 @@ video.video-fullscreen {
}

.bg-transparent {
background-color: transparent;
background-color: transparent !important;
}

.text-transparent {
border-color: transparent;
color: transparent;
border-color: transparent !important;
color: transparent !important;
}

/* v2 */
Expand Down Expand Up @@ -11241,12 +11241,12 @@ label:last-child:not(:first-child):not(.form-group-label) {
padding: 0 1rem;
}
.frame .frame__title {
color: #374054;
color: #0f172a;
font-size: 1rem;
margin: 0.75rem auto 0;
}
.frame .frame__subtitle {
color: rgba(55, 64, 84, 0.6);
color: rgba(15, 23, 42, 0.6);
font-size: 1rem;
margin: 0 auto 0.75rem;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-core.min.css

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
*/
:root {
/* v1 Colors */
--cirrus-fg: #374054;
--cirrus-fg: #0f172a;
--cirrus-bg: #ffffff;
--cirrus-select-bg: rgba(0, 161, 255, 0.2);
--cirrus-code-bg: rgba(255, 218, 221, 1);
Expand Down Expand Up @@ -4646,12 +4646,12 @@ video.video-fullscreen {
}

.bg-transparent {
background-color: transparent;
background-color: transparent !important;
}

.text-transparent {
border-color: transparent;
color: transparent;
border-color: transparent !important;
color: transparent !important;
}

/* v2 */
Expand Down Expand Up @@ -11242,12 +11242,12 @@ label:last-child:not(:first-child):not(.form-group-label) {
padding: 0 1rem;
}
.frame .frame__title {
color: #374054;
color: #0f172a;
font-size: 1rem;
margin: 0.75rem auto 0;
}
.frame .frame__subtitle {
color: rgba(55, 64, 84, 0.6);
color: rgba(15, 23, 42, 0.6);
font-size: 1rem;
margin: 0 auto 0.75rem;
}
Expand Down Expand Up @@ -14382,7 +14382,7 @@ ul .divider::after {
pointer-events: none;
}
.breadcrumb .breadcrumb__item.breadcrumb__item--active a {
color: #374054;
color: #0f172a;
}

/* CARDS */
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/base/modifiers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@
}

.bg-transparent {
background-color: transparent;
background-color: transparent !important;
}

.text-transparent {
border-color: transparent;
color: transparent;
border-color: transparent !important;
color: transparent !important;
}

/* v2 */
Expand Down
2 changes: 1 addition & 1 deletion src/internal/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $cirrus-success-hover: #00b147;
$cirrus-warning-hover: #f9a90e;
$cirrus-danger-hover: #f1393c;

$cirrus-fg: #374054;
$cirrus-fg: #0f172a;
$cirrus-bg: $cirrus-white;

$cirrus-select-bg: rgba(0, 161, 255, 0.2);
Expand Down

0 comments on commit cea9b3c

Please sign in to comment.