Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra committed Jul 26, 2020
2 parents 59e295f + 8be8846 commit 845e90b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion tests/renderRepoCard.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe("Test renderRepoCard", () => {
expect(iconClassStyles.fill).toBe("#586069");
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
"fill",
"#FFFEFE"
"#fffefe"
);
});

Expand Down
2 changes: 1 addition & 1 deletion tests/renderStatsCard.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ describe("Test renderStatsCard", () => {
expect(iconClassStyles.fill).toBe("#4c71f2");
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
"fill",
"#FFFEFE"
"#fffefe"
);
});

Expand Down
2 changes: 1 addition & 1 deletion tests/renderTopLanguages.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ describe("Test renderTopLanguages", () => {
expect(langNameStyles.fill).toBe("#333");
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
"fill",
"#FFFEFE"
"#fffefe"
);
});

Expand Down
28 changes: 14 additions & 14 deletions themes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ const themes = {
title_color: "2f80ed",
icon_color: "4c71f2",
text_color: "333",
bg_color: "FFFEFE",
bg_color: "fffefe",
},
default_repocard: {
title_color: "2f80ed",
icon_color: "586069", // icon color is different
text_color: "333",
bg_color: "FFFEFE",
bg_color: "fffefe",
},
dark: {
title_color: "fff",
Expand Down Expand Up @@ -87,18 +87,18 @@ const themes = {
title_color: "41b883",
icon_color: "41b883",
text_color: "273849",
bg_color: "FFFEFE",
bg_color: "fffefe",
},
"shades-of-purple": {
title_color: "FAD000",
icon_color: "B362FF",
text_color: "A599E9",
bg_color: "2D2B55",
title_color: "fad000",
icon_color: "b362ff",
text_color: "a599e9",
bg_color: "2d2b55",
},
nightowl: {
title_color: "C792EA",
icon_color: "FFEB95",
text_color: "7FDBCA",
title_color: "c792ea",
icon_color: "ffeb95",
text_color: "7fdbca",
bg_color: "011627",
},
buefy: {
Expand All @@ -108,10 +108,10 @@ const themes = {
bg_color: "ffffff",
},
"blue-green": {
title_color: "2F97C1",
icon_color: "F5B700",
text_color: "0CF574",
bg_color: "040F0F",
title_color: "2f97c1",
icon_color: "f5b700",
text_color: "0cf574",
bg_color: "040f0f",
},
};

Expand Down

0 comments on commit 845e90b

Please sign in to comment.