Skip to content

Commit

Permalink
feat(core): ✨ prefer Roboto over language fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair3149 committed Dec 13, 2023
1 parent dc3ca54 commit b134fbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit b134fbf

Please sign in to comment.