Tunio Desktop client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

263 lines
4.8 KiB

import i18next from 'i18next';
export const Fonts = [
{
label: 'Archivo',
value: 'Archivo',
role: i18next.t('Regular'),
},
{
label: 'Cormorant',
value: 'Cormorant',
role: i18next.t('Regular'),
},
{
label: 'Encode Sans',
value: 'Encode Sans',
role: i18next.t('Regular'),
},
{
label: 'Epilogue',
value: 'Epilogue',
role: i18next.t('Regular'),
},
{
label: 'Hahmlet',
value: 'Hahmlet',
role: i18next.t('Regular'),
},
{
label: 'Inter',
value: 'Inter',
role: i18next.t('Regular'),
},
{
label: 'JetBrains Mono',
value: 'JetBrains Mono',
role: i18next.t('Regular'),
},
{
label: 'Manrope',
value: 'Manrope',
role: i18next.t('Regular'),
},
{
label: 'Monsterrat',
value: 'Monsterrat',
role: i18next.t('Regular'),
},
{
label: 'Oswald',
value: 'Oswald',
role: i18next.t('Regular'),
},
{
label: 'Oxygen',
value: 'Oxygen',
role: i18next.t('Regular'),
},
{
label: 'Poppins',
value: 'Poppins',
role: i18next.t('Regular'),
},
{
label: 'Raleway',
value: 'Raleway',
role: i18next.t('Regular'),
},
{
label: 'Roboto',
value: 'Roboto',
role: i18next.t('Regular'),
},
{
label: 'Sora',
value: 'Sora',
role: i18next.t('Regular'),
},
{
label: 'Spectral',
value: 'Spectral',
role: i18next.t('Regular'),
},
{
label: 'Work Sans',
value: 'Work Sans',
role: i18next.t('Regular'),
},
// LIGHT
{
label: 'Archivo (Light)',
value: 'ArchivoLight',
role: i18next.t('Light'),
},
{
label: 'Cormorant (Light)',
value: 'CormorantLight',
role: i18next.t('Light'),
},
{
label: 'Encode Sans (Light)',
value: 'Encode SansLight',
role: i18next.t('Light'),
},
{
label: 'Epilogue (Light)',
value: 'EpilogueLight',
role: i18next.t('Light'),
},
{
label: 'Hahmlet (Light)',
value: 'HahmletLight',
role: i18next.t('Light'),
},
{
label: 'Inter (Light)',
value: 'InterLight',
role: i18next.t('Light'),
},
{
label: 'JetBrains Mono (Light)',
value: 'JetBrains MonoLight',
role: i18next.t('Light'),
},
{
label: 'Manrope (Light)',
value: 'ManropeLight',
role: i18next.t('Light'),
},
{
label: 'Monsterrat (Light)',
value: 'MonsterratLight',
role: i18next.t('Light'),
},
{
label: 'Oswald (Light)',
value: 'OswaldLight',
role: i18next.t('Light'),
},
{
label: 'Oxygen (Light)',
value: 'OxygenLight',
role: i18next.t('Light'),
},
{
label: 'Poppins (Light)',
value: 'PoppinsLight',
role: i18next.t('Light'),
},
{
label: 'Raleway (Light)',
value: 'RalewayLight',
role: i18next.t('Light'),
},
{
label: 'Roboto (Light)',
value: 'RobotoLight',
role: i18next.t('Light'),
},
{
label: 'Sora (Light)',
value: 'SoraLight',
role: i18next.t('Light'),
},
{
label: 'Spectral (Light)',
value: 'SpectralLight',
role: i18next.t('Light'),
},
{
label: 'Work Sans (Light)',
value: 'Work SansLight',
role: i18next.t('Light'),
},
// MEDIUM
{
label: 'Archivo (Medium)',
value: 'ArchivoMedium',
role: i18next.t('Medium'),
},
{
label: 'Cormorant (Medium)',
value: 'CormorantMedium',
role: i18next.t('Medium'),
},
{
label: 'Encode Sans (Medium)',
value: 'Encode SansMedium',
role: i18next.t('Medium'),
},
{
label: 'Epilogue (Medium)',
value: 'EpilogueMedium',
role: i18next.t('Medium'),
},
{
label: 'Hahmlet (Medium)',
value: 'HahmletMedium',
role: i18next.t('Medium'),
},
{
label: 'Inter (Medium)',
value: 'InterMedium',
role: i18next.t('Medium'),
},
{
label: 'JetBrains Mono (Medium)',
value: 'JetBrains MonoMedium',
role: i18next.t('Medium'),
},
{
label: 'Manrope (Medium)',
value: 'ManropeMedium',
role: i18next.t('Medium'),
},
{
label: 'Monsterrat (Medium)',
value: 'MonsterratMedium',
role: i18next.t('Medium'),
},
{
label: 'Oswald (Medium)',
value: 'OswaldMedium',
role: i18next.t('Medium'),
},
{
label: 'Oxygen (Medium)',
value: 'OxygenMedium',
role: i18next.t('Medium'),
},
{
label: 'Poppins (Medium)',
value: 'PoppinsMedium',
role: i18next.t('Medium'),
},
{
label: 'Raleway (Medium)',
value: 'RalewayMedium',
role: i18next.t('Medium'),
},
{
label: 'Roboto (Medium)',
value: 'RobotoMedium',
role: i18next.t('Medium'),
},
{
label: 'Sora (Medium)',
value: 'SoraMedium',
role: i18next.t('Medium'),
},
{
label: 'Spectral (Medium)',
value: 'SpectralMedium',
role: i18next.t('Medium'),
},
{
label: 'Work Sans (Medium)',
value: 'Work SansMedium',
role: i18next.t('Medium'),
},
];