1
1
mirror of https://github.com/primer/css.git synced 2024-12-29 00:58:31 +03:00

move $bg-diffstat-* variables to colors.scss

This commit is contained in:
Shawn Allen 2019-10-24 12:00:19 -07:00
parent ff8e78f9a4
commit 1d150d459d
2 changed files with 5 additions and 5 deletions

View File

@ -54,6 +54,11 @@ $bg-yellow: $yellow-500 !default;
$bg-yellow-light: $yellow-200 !default;
$bg-yellow-dark: $yellow-700 !default;
// diffstat background colors
$bg-diffstat-added: darken($green-400, 5%) !default;
$bg-diffstat-deleted: $red-600 !default;
$bg-diffstat-neutral: $gray-300 !default;
// Text colors
$text-blue: $blue-500 !default;
$text-gray-dark: $gray-900 !default;

View File

@ -37,8 +37,3 @@ $max_tab_size: 12;
$form-control-shadow: inset 0 1px 2px rgba($black, 0.075);
$btn-input-focus-shadow: 0 0 0 0.2em rgba($blue, 0.3);
$btn-active-shadow: inset 0 0.15em 0.3em $black-fade-15;
// diffstat
$bg-diffstat-added: darken($green-400, 5%);
$bg-diffstat-deleted: $red-600;
$bg-diffstat-neutral: $gray-300;