1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Update Indigo Shades, Add Pink Tag

Summary: Colors for Tags

Test Plan: Photoshop

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D10053
This commit is contained in:
Chad Little 2014-07-25 08:28:29 -07:00
parent 556bca3099
commit 1be1f80025
4 changed files with 31 additions and 8 deletions

View file

@ -7,7 +7,7 @@
*/
return array(
'names' => array(
'core.pkg.css' => 'c2c68e64',
'core.pkg.css' => 'dbc1c89a',
'core.pkg.js' => 'ba6a742f',
'darkconsole.pkg.js' => 'df001cab',
'differential.pkg.css' => '4a93db37',
@ -142,7 +142,7 @@ return array(
'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b',
'rsrc/css/phui/phui-spacing.css' => '042804d6',
'rsrc/css/phui/phui-status.css' => '2f562399',
'rsrc/css/phui/phui-tag-view.css' => '1e8aeb04',
'rsrc/css/phui/phui-tag-view.css' => 'bf4fdc69',
'rsrc/css/phui/phui-text.css' => '23e9b4b7',
'rsrc/css/phui/phui-timeline-view.css' => 'bbd990d0',
'rsrc/css/phui/phui-workboard-view.css' => '2bf82d00',
@ -795,7 +795,7 @@ return array(
'phui-remarkup-preview-css' => '19ad512b',
'phui-spacing-css' => '042804d6',
'phui-status-list-view-css' => '2f562399',
'phui-tag-view-css' => '1e8aeb04',
'phui-tag-view-css' => 'bf4fdc69',
'phui-text-css' => '23e9b4b7',
'phui-timeline-view-css' => 'bbd990d0',
'phui-workboard-view-css' => '2bf82d00',

View file

@ -275,11 +275,11 @@ final class CelerityResourceTransformer {
'sh-bluebackground' => '#dee7f8',
// Shade Indigo
'sh-lightindigoborder' => '#f6d5ef',
'sh-indigoborder' => '#d5aecd',
'sh-indigoicon' => '#e26fcb',
'sh-indigotext' => '#da49be',
'sh-indigobackground' => '#fbeaf8',
'sh-lightindigoborder' => '#d1c9ee',
'sh-indigoborder' => '#bcb4da',
'sh-indigoicon' => '#8672d4',
'sh-indigotext' => '#6e5cb6',
'sh-indigobackground' => '#eae6f7',
// Shade Violet
'sh-lightvioletborder' => '#e0d1e7',
@ -288,6 +288,13 @@ final class CelerityResourceTransformer {
'sh-violettext' => '#69427f',
'sh-violetbackground' => '#efe8f3',
// Shade Pink
'sh-lightpinkborder' => '#f6d5ef',
'sh-pinkborder' => '#d5aecd',
'sh-pinkicon' => '#e26fcb',
'sh-pinktext' => '#da49be',
'sh-pinkbackground' => '#fbeaf8',
// Shade Grey
'sh-lightgreyborder' => '#d8d8d8',
'sh-greyborder' => '#b2b2b2',

View file

@ -17,6 +17,7 @@ final class PHUITagView extends AphrontTagView {
const COLOR_BLACK = 'black';
const COLOR_GREY = 'grey';
const COLOR_WHITE = 'white';
const COLOR_PINK = 'pink';
const COLOR_BLUEGREY = 'bluegrey';
const COLOR_CHECKERED = 'checkered';
const COLOR_DISABLED = 'disabled';
@ -229,6 +230,7 @@ final class PHUITagView extends AphrontTagView {
self::COLOR_VIOLET => pht('Violet'),
self::COLOR_GREEN => pht('Green'),
self::COLOR_GREY => pht('Grey'),
self::COLOR_PINK => pht('Pink'),
self::COLOR_CHECKERED => pht('Checkered'),
self::COLOR_DISABLED => pht('Disabled'),
);

View file

@ -270,6 +270,20 @@ a.phui-tag-view:hover.phui-tag-shade-violet .phui-tag-core {
border-color: {$sh-violetborder};
}
.phui-tag-shade-pink .phui-tag-core {
background-color: {$sh-pinkbackground};
border-color: {$sh-lightpinkborder};
color: {$sh-pinktext};
}
.phui-tag-shade-pink .phui-icon-view {
color: {$sh-pinkicon};
}
a.phui-tag-view:hover.phui-tag-shade-pink .phui-tag-core {
border-color: {$sh-pinkborder};
}
.phui-tag-shade-grey .phui-tag-core {
background-color: {$sh-greybackground};
border-color: {$sh-lightgreyborder};