'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 }