Change Theme and Font

Publish date: Oct 9, 2021
Tags: Tech

hugo でフォントの編集

だいたい assets/css の下に custom.css がある。
https://github.com/zwbetz-gh/papercss-hugo-theme/blob/master/assets/css/custom.css

使いたいフォントの選定
日本語の手書き風のやつ
https://fonts.google.com/specimen/Yomogi#standard-styles

@import url(https://fonts.googleapis.com/css?family=Yomogi);
body {
  background-image: url('{{ "img/geometry2.png" | relURL }}');
  font-family: Neucha,Yomogi,sans-serif;
}

/* font */
tr {
  font-family: Neucha,Yomogi,sans-serif
}
p {
  font-family: Neucha,Yomogi,sans-serif
}
a {
  font-family: Neucha,Yomogi,sans-serif
}
h1,h2,h3,h4,h5,h6 {
  font-family: Neucha,Yomogi,sans-serif
}

th,td {
  font-family: Neucha,Yomogi,sans-serif
}

↑年に2回くらいしかcss書かないから覚え書き。

かなりクセ強めになったけどプライベートなBlogなので良し!