Commit 6dba857a authored by Coung Ngo's avatar Coung Ngo Committed by Peter Hegman

Fix projects dark mode colors

parent ea322700
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
.project-repo-buttons { .project-repo-buttons {
.btn { .btn {
svg { svg {
fill: $gray-500; fill: var(--gray-500, $gray-500);
} }
} }
...@@ -148,13 +148,13 @@ ...@@ -148,13 +148,13 @@
background-color: transparent; background-color: transparent;
font-size: $gl-font-size; font-size: $gl-font-size;
line-height: $gl-btn-line-height; line-height: $gl-btn-line-height;
color: $gl-text-color-secondary; color: var(--gray-500, $gl-text-color-secondary);
white-space: pre-wrap; white-space: pre-wrap;
} }
.stat-link { .stat-link {
border-bottom: 0; border-bottom: 0;
color: $black; color: var(--black, $black);
&:hover, &:hover,
&:focus { &:focus {
...@@ -163,17 +163,17 @@ ...@@ -163,17 +163,17 @@
} }
.project-stat-value { .project-stat-value {
color: $gl-text-color; color: var(--gl-text-color, $gl-text-color);
} }
.icon { .icon {
color: $gl-text-color-secondary; color: var(--gray-500, $gl-text-color-secondary);
} }
.add-license-link { .add-license-link {
&, &,
.icon { .icon {
color: $blue-600; color: var(--blue-600, $blue-600);
} }
} }
} }
...@@ -200,13 +200,13 @@ ...@@ -200,13 +200,13 @@
margin-bottom: 7px; margin-bottom: 7px;
h5 { h5 {
color: $gl-text-color; color: var(--gl-text-color, $gl-text-color);
} }
.light-well { .light-well {
border-radius: 2px; border-radius: 2px;
color: $well-light-text-color; color: var(--gray-600, $well-light-text-color);
font-size: 13px; font-size: 13px;
line-height: 1.6em; line-height: 1.6em;
} }
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
} }
.highlight-changes & { .highlight-changes & {
background: $highlight-changes-color; background: var(--green-50, $highlight-changes-color);
transition: none; transition: none;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment