Skip to content

Commit fccdae8

Browse files
committed
Update report font
Change font from Montserrat to Noto Sans
1 parent 4d91742 commit fccdae8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

config/design_plots.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ showtext_auto(enable = FALSE)
88
showtext_opts(dpi = 200)
99

1010
# Tema
11-
font_add_google("Montserrat", "Montserrat")
11+
font_add_google("Noto Sans", "Noto Sans")
1212
showtext_auto()
1313

1414
theme_set(theme_minimal())
1515

1616
theme_update(
17-
text = element_text(size = 16, family = "Montserrat"),
17+
text = element_text(size = 16, family = "Noto Sans"),
1818
axis.title = element_text(size = 16),
1919
axis.line = element_line(
2020
linewidth = 0.5,

config/report.styles.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
}
1010

1111
.title {
12-
font-family: Montserrat;
12+
font-family: "Noto Sans";
1313
color: #FFFFFF
1414
}
1515
.quarto-title p {
16-
font-family: Montserrat;
16+
font-family: "Noto Sans";
1717
color: #FFFFFF
1818
}
1919
html {
20-
font-family: Montserrat;
20+
font-family: "Noto Sans";
2121
color: #000000;
2222
text-align: justify;
2323
}

template.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ output-file: report.html
4949
<head>
5050
<link rel="preconnect" href="https://fonts.googleapis.com">
5151
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
52-
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
52+
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
5353
</head>
5454

5555

@@ -143,7 +143,7 @@ table %>%
143143
columns = everything()
144144
) %>%
145145
opt_table_font(
146-
font = google_font("Montserrat")
146+
font = google_font("Noto Sans")
147147
)
148148
```
149149

0 commit comments

Comments
 (0)