feat(core): prefer Roboto over language fonts

This commit is contained in:
alistair3149 2023-12-13 17:33:43 -05:00
parent dc3ca54d43
commit b134fbfec5
No known key found for this signature in database

View file

@ -36,11 +36,11 @@
* It is empty by default but populated by Citizen language modules such as the CJK one.
*/
// Citizen sans-serif fonts
@font-family-base: var( --font-family-language-base ), 'Roboto', system-ui, -apple-system, sans-serif;
@font-family-base: 'Roboto', var( --font-family-language-base ), system-ui, -apple-system, sans-serif;
// Citizen serif fonts
@font-family-serif: var( --font-family-language-serif ), 'Roboto Serif', 'Linux Libertine', 'Georgia', 'Times', 'Source Serif Pro', serif;
@font-family-serif: 'Roboto Serif', var( --font-family-language-serif ), 'Linux Libertine', 'Georgia', 'Times', 'Source Serif Pro', serif;
// Citizen monospace fonts
@font-family-monospace: var( --font-family-language-monospace ), 'Roboto Mono', 'Menlo', 'Consolas', 'Liberation Mono', 'Fira Code', 'Courier New', monospace;
@font-family-monospace: 'Roboto Mono', var( --font-family-language-monospace ), 'Menlo', 'Consolas', 'Liberation Mono', 'Fira Code', 'Courier New', monospace;
/* == Colors == */
/* Base theme */