matugen: update templates to new custom variable formats
This commit is contained in:
parent
8cd4eac37c
commit
3e5aaf703c
9 changed files with 36 additions and 32 deletions
|
|
@ -17,7 +17,7 @@
|
|||
/* customize things here */
|
||||
:root {
|
||||
/* font, change to 'gg sans' for default discord font*/
|
||||
--font: '{{custom.font}}';
|
||||
--font: '{{ font }}';
|
||||
|
||||
/* top left corner text */
|
||||
--corner-text: 'Midnight';
|
||||
|
|
@ -65,12 +65,12 @@
|
|||
--icon-spin-transition: 1s ease; /* round icon button spin (settings, emoji, etc.) */
|
||||
|
||||
/* corner roundness (border-radius) */
|
||||
--roundness-xl: {{custom.rounding}}px; /* roundness of big panel outer corners */
|
||||
--roundness-l: {{custom.rounding}}px; /* popout panels */
|
||||
--roundness-m: {{custom.rounding}}px; /* smaller panels, images, embeds */
|
||||
--roundness-s: {{custom.rounding}}px; /* members, settings inputs */
|
||||
--roundness-xs: {{custom.rounding}}px; /* channels, buttons */
|
||||
--roundness-xxs: {{custom.rounding}}px; /* searchbar, small elements */
|
||||
--roundness-xl: {{ rounding }}px; /* roundness of big panel outer corners */
|
||||
--roundness-l: {{ rounding }}px; /* popout panels */
|
||||
--roundness-m: {{ rounding }}px; /* smaller panels, images, embeds */
|
||||
--roundness-s: {{ rounding }}px; /* members, settings inputs */
|
||||
--roundness-xs: {{ rounding }}px; /* channels, buttons */
|
||||
--roundness-xxs: {{ rounding }}px; /* searchbar, small elements */
|
||||
|
||||
/* direct messages moon icon */
|
||||
/* change to block to show, none to hide */
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
|
||||
/* Setting font in :root doesn't work for some reason */
|
||||
body {
|
||||
font-family: '{{custom.font}}';
|
||||
font-family: '{{ font }}';
|
||||
}
|
||||
|
||||
/* Selected chat/friend text */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue