Commit 8ca8eb3f authored by jeldergl's avatar jeldergl

Updating hex and remapping variables

The $gray-800 hex value now matches GitLab UI, and instances
of $gray-800 have been remapped to use $gray-700.
parent 475d4b9e
...@@ -191,7 +191,7 @@ export default { ...@@ -191,7 +191,7 @@ export default {
name="eye-slash" name="eye-slash"
:size="14" :size="14"
:title="s__('Notes|Private comments are accessible by internal staff only')" :title="s__('Notes|Private comments are accessible by internal staff only')"
class="gl-ml-1 gl-text-gray-800 align-middle" class="gl-ml-1 gl-text-gray-700 align-middle"
/> />
<slot name="extra-controls"></slot> <slot name="extra-controls"></slot>
<i <i
......
...@@ -125,7 +125,7 @@ $identicon-backgrounds: $identicon-red, $identicon-purple, $identicon-indigo, $i ...@@ -125,7 +125,7 @@ $identicon-backgrounds: $identicon-red, $identicon-purple, $identicon-indigo, $i
.identicon { .identicon {
text-align: center; text-align: center;
vertical-align: top; vertical-align: top;
color: $gray-800; color: $gray-700;
background-color: $gray-darker; background-color: $gray-darker;
// Sizes // Sizes
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
} }
button { button {
@include gl-text-gray-800; @include gl-text-gray-700;
} }
} }
......
.badge.badge-pill:not(.gl-badge) { .badge.badge-pill:not(.gl-badge) {
font-weight: $gl-font-weight-normal; font-weight: $gl-font-weight-normal;
background-color: $badge-bg; background-color: $badge-bg;
color: $gray-800; color: $gray-700;
vertical-align: baseline; vertical-align: baseline;
// Do not use this! // Do not use this!
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
} }
.broadcast-message-dismiss { .broadcast-message-dismiss {
color: $gray-800; color: $gray-700;
} }
} }
......
...@@ -297,7 +297,7 @@ body { ...@@ -297,7 +297,7 @@ body {
$gray-200, $gray-200,
$gray-300, $gray-300,
$gray-500, $gray-500,
$gray-800, $gray-700,
$gray-900, $gray-900,
$white $white
); );
...@@ -306,7 +306,7 @@ body { ...@@ -306,7 +306,7 @@ body {
&.ui-light { &.ui-light {
@include gitlab-theme( @include gitlab-theme(
$gray-500, $gray-500,
$gray-800, $gray-700,
$gray-500, $gray-500,
$gray-500, $gray-500,
$gray-50, $gray-50,
......
...@@ -285,7 +285,7 @@ ...@@ -285,7 +285,7 @@
.select2-highlighted { .select2-highlighted {
.group-result { .group-result {
.group-path { .group-path {
color: $gray-800; color: $gray-700;
} }
} }
} }
......
...@@ -170,7 +170,7 @@ $gray-400: #868686 !default; ...@@ -170,7 +170,7 @@ $gray-400: #868686 !default;
$gray-500: #666 !default; $gray-500: #666 !default;
$gray-600: #5e5e5e !default; $gray-600: #5e5e5e !default;
$gray-700: #525252 !default; $gray-700: #525252 !default;
$gray-800: #4f4f4f !default; $gray-800: #404040 !default;
$gray-900: #303030 !default; $gray-900: #303030 !default;
$gray-950: #1f1f1f !default; $gray-950: #1f1f1f !default;
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
} }
.badge.badge-pill { .badge.badge-pill {
color: var(--ide-text-color, $gray-800); color: var(--ide-text-color, $gray-700);
background-color: var(--ide-background, $badge-bg); background-color: var(--ide-background, $badge-bg);
} }
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
text { text {
font-weight: bold; font-weight: bold;
font-size: 12px; font-size: 12px;
fill: $gray-800; fill: $gray-700;
} }
} }
} }
......
...@@ -336,11 +336,11 @@ ...@@ -336,11 +336,11 @@
} }
.label-action { .label-action {
color: $gray-800; color: $gray-700;
cursor: pointer; cursor: pointer;
svg { svg {
fill: $gray-800; fill: $gray-700;
} }
&:hover { &:hover {
......
...@@ -796,7 +796,7 @@ ...@@ -796,7 +796,7 @@
&.ci-status-icon-disabled, &.ci-status-icon-disabled,
&.ci-status-icon-not-found, &.ci-status-icon-not-found,
&.ci-status-icon-manual { &.ci-status-icon-manual {
@include mini-pipeline-graph-color($white, $gray-500, $gray-800, $gray-900, $gray-950, $black); @include mini-pipeline-graph-color($white, $gray-500, $gray-700, $gray-900, $gray-950, $black);
} }
&.ci-status-icon-created, &.ci-status-icon-created,
......
...@@ -19,7 +19,7 @@ export default { ...@@ -19,7 +19,7 @@ export default {
</gl-button> </gl-button>
</div> </div>
<div class="media-body"> <div class="media-body">
<strong class="gl-font-weight-bold gl-text-gray-800 gl-pl-2"> <strong class="gl-font-weight-bold gl-text-gray-700 gl-pl-2">
{{ s__('mrWidget|You can merge after removing denied licenses') }} {{ s__('mrWidget|You can merge after removing denied licenses') }}
</strong> </strong>
</div> </div>
......
---
title: Replace -800 hex value, replace usages with -700
merge_request: 39734
author:
type: other
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