matugen: make UI font and monospace font different variables
This commit is contained in:
parent
30aabf1683
commit
2fb3b565f7
6 changed files with 12 additions and 4 deletions
|
|
@ -4,7 +4,7 @@
|
|||
*/
|
||||
|
||||
* {
|
||||
font-family: {{ font }};
|
||||
font-family: {{ font }}, {{monospace_font}};
|
||||
border-radius: {{ rounding }}px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
:root {
|
||||
/* font, change to 'gg sans' for default discord font*/
|
||||
--font: '{{ font }}';
|
||||
--code-font: '{{ monospace_font }}';
|
||||
|
||||
/* top left corner text */
|
||||
--corner-text: 'Midnight';
|
||||
|
|
@ -91,6 +92,10 @@ body {
|
|||
font-family: '{{ font }}';
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: '{{monospace_font}}';
|
||||
}
|
||||
|
||||
/* Selected chat/friend text */
|
||||
.selected_f5eb4b,
|
||||
.selected_f6f816 .link_d8bfb3 {
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
background = {{colors.background.default.hex}}
|
||||
font-family = {{monospace_font}}
|
||||
|
|
|
|||
|
|
@ -2,5 +2,6 @@ export PRIMARY_COLOUR="0xFF{{colors.primary.default.hex_stripped}}"
|
|||
export SECONDARY_COLOUR="0xFF{{colors.secondary.default.hex_stripped}}"
|
||||
export BACKGROUND_COLOUR=0xFF"{{colors.background.default.hex_stripped}}"
|
||||
export FONT="{{ font }}"
|
||||
export MONOSPACE_FONT="{{ monospace_font }}"
|
||||
|
||||
export ROUNDING="{{ rounding }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue