Skip to content

Commit

Permalink
Merge pull request #463 from SELab-2/better-colors
Browse files Browse the repository at this point in the history
chore: better colors
  • Loading branch information
francisvaut authored May 23, 2024
2 parents 77d40c7 + 16ddccd commit 0c27a32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/assets/lang/app/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
"newProject": "New project",
"noSubmissions": "This project does not have any submissions \uD83D\uDE2D",
"submissions": "Group has made a submission | Groups have made a submission",
"groups": "Group | Groups",
"groups": "Participating group | Participating groups",
"structureTestsFail": "Failed structure tests",
"extraChecksFail": "Failed extra tests",
"testsSucceed": "Succeeded tests",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/assets/lang/app/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@
"open": "Details",
"newProject": "Nieuw project",
"noSubmissions": "Dit project heeft geen indieningen",
"submissions": "Indiening | Indieningen",
"groups": "Groep heeft al ingediend | Groepen hebben al ingediend",
"submissions": "Groep heeft al ingediend | Groepen hebben al ingediend",
"groups": "Deelnemende groep | Deelnemende groepen",
"structureTestsFail": "Gefaalde structuurtesten",
"extraChecksFail": "Gefaalde extra testen",
"testsSucceed": "Geslaagde testen",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/submissions/ProjectMeter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const meterItems = computed(() => {
const extraChecksFailed = structureChecksPassed - extraChecksPassed;
const green = '#76DD78';
const green = '#749B68';
const orange = '#FFB84F';
const red = '#F37142';
const red = '#FF5445';
const submissionsFailedItem = {
value: (submissionsFailed / groups) * 100,
Expand Down

0 comments on commit 0c27a32

Please sign in to comment.