Skip to content

Commit f945ab8

Browse files
authored
Merge pull request #2950 from PrakashDurlabhji/issue_2886
issue 2886 fix
2 parents c1ea5cb + 17ca230 commit f945ab8

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

__tests__/shared/components/ProfilePage/Header/__snapshots__/index.jsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exports[`renders profile about header correctly 1`] = `
2121
className="src-shared-components-ProfilePage-Header-___styles__handle___-v11j"
2222
style={
2323
Object {
24-
"color": "#9D9FA0",
24+
"color": "#555555",
2525
}
2626
}
2727
>

__tests__/shared/components/TopcoderHeader/__snapshots__/index.jsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ exports[`Render with specified profile 1`] = `
639639
className="src-shared-components-TopcoderHeader-___style__user-menu-handle___r6kbg"
640640
style={
641641
Object {
642-
"color": "#9D9FA0",
642+
"color": "#555555",
643643
}
644644
}
645645
/>

__tests__/shared/components/TopcoderHeader/mobile/__snapshots__/UserMenu.jsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exports[`Snapshot match 1`] = `
1818
className="src-shared-components-TopcoderHeader-mobile-UserMenu-___style__handle___CL0Tq"
1919
style={
2020
Object {
21-
"color": "#9D9FA0",
21+
"color": "#555555",
2222
}
2323
}
2424
>

__tests__/shared/components/__snapshots__/Handle.jsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ exports[`Matches shallow shapshot 1`] = `
66
href=""
77
style={
88
Object {
9-
"color": "#9D9FA0",
9+
"color": "#555555",
1010
"fontSize": "24px",
1111
}
1212
}

src/shared/utils/tc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ export function getRatingLevel(rating) {
9898
/* TODO: The actual color values below are taken from topcoder-app. Probably,
9999
* they don't match colors in the current Topcoder style guide. */
100100
export const RATING_COLORS = [{
101-
color: '#9D9FA0' /* Grey */,
101+
color: '#555555' /* Grey */,
102102
limit: 900,
103103
}, {
104-
color: '#69C329' /* Green */,
104+
color: '#2D7E2D' /* Green */,
105105
limit: 1200,
106106
}, {
107107
color: '#616BD5' /* Blue */,

0 commit comments

Comments
 (0)