44 lines
553 B
JavaScript
44 lines
553 B
JavaScript
'use strict'
|
|
|
|
// https://support.codefactor.io/i14-glossary
|
|
const letterGrades = {
|
|
A: {
|
|
color: 'brightgreen',
|
|
},
|
|
'A-': {
|
|
color: 'green',
|
|
},
|
|
'B+': {
|
|
color: 'yellowgreen',
|
|
},
|
|
B: {
|
|
color: 'yellowgreen',
|
|
},
|
|
'B-': {
|
|
color: 'yellowgreen',
|
|
},
|
|
'C+': {
|
|
color: 'yellow',
|
|
},
|
|
C: {
|
|
color: 'yellow',
|
|
},
|
|
'C-': {
|
|
color: 'yellow',
|
|
},
|
|
'D+': {
|
|
color: 'orange',
|
|
},
|
|
D: {
|
|
color: 'orange',
|
|
},
|
|
'D-': {
|
|
color: 'orange',
|
|
},
|
|
F: {
|
|
color: 'red',
|
|
},
|
|
}
|
|
|
|
module.exports = { letterGrades }
|