Skip to content

Instantly share code, notes, and snippets.

@CesarBalzer
Created October 27, 2022 01:50
Show Gist options
  • Save CesarBalzer/c75c211e52694bb3323cc5dc681957c5 to your computer and use it in GitHub Desktop.
Save CesarBalzer/c75c211e52694bb3323cc5dc681957c5 to your computer and use it in GitHub Desktop.
Gregorian Characters
const gregorian_chars = [
{ id: 1, text: 'Alpha', color: 'violet', symbol:'α', letter:'A' },
{ id: 2, text: 'Beta', color: 'dodgerblue', symbol:'β', letter:'B' },
{ id: 3, text: 'Gama', color: 'green', symbol:'γ', letter:'Γ' },
{ id: 4, text: 'Delta', color: 'orange', symbol:'δ', letter:'Δ' },
{ id: 5, text: 'Épsilon', color: 'brown', symbol:'ε', letter:'E' },
{ id: 6, text: 'Zeta', color: 'red', symbol:'ζ', letter:'Z' },
{ id: 7, text: 'Etá', color: 'blue', symbol:'η', letter:'H' },
{ id: 8, text: 'Teta', color: 'gray', symbol:'θ', letter:'Θ' },
{ id: 9, text: 'Iota', color: 'yellow', symbol:'ι', letter:'I' },
{ id: 10, text: 'Capa', color: 'darkred', symbol:'κ', letter:'K' },
{ id: 11, text: 'Lambda', color: 'greenyellow', symbol:'λ', letter:'Λ' },
{ id: 12, text: 'Miu', color: 'aqua', symbol:'μ', letter:'M' },
{ id: 13, text: 'Niu', color: 'indigo', symbol:'ν', letter:'N' },
{ id: 14, text: 'Csi', color: 'teal', symbol:'ξ', letter:'Ξ' },
{ id: 15, text: 'Ómicron', color: 'beige', symbol:'ο', letter:'O' },
{ id: 16, text: 'Pi', color: 'peru', symbol:'π', letter:'Π' },
{ id: 17, text: 'Rô', color: 'magenta', symbol:'ρ', letter:'P' },
{ id: 18, text: 'Sigma', color: 'seagreen', symbol:'σ,ς', letter:'Σ' },
{ id: 19, text: 'Tau', color: 'lightcoral', symbol:'τ', letter:'T' },
{ id: 20, text: 'Upsilon', color: 'darkpink', symbol:'υ', letter:'Y' },
{ id: 20, text: 'Fi', color: 'olive', symbol:'φ', letter:'Φ' },
{ id: 21, text: 'Chi', color: 'cyan', symbol:'χ', letter:'X' },
{ id: 22, text: 'Psi', color: 'pink', symbol:'ψ', letter:'Ψ' },
{ id: 23, text: 'Omega', color: 'lime', symbol:'ω', letter:'Ω' },
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment