Typora 配置

修改 ~/AppData/Roaming/Typora/themes/github.css

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* 在 themes/ 下放置图片目录 */
:root {
--side-bar-bg-color: #fafafa;
--control-text-color: #777;
+ background-image: url(./image/backgrounds/your_bg.jpg);
+ background-size: cover;
+ opacity: 0.81;
}

/* 所有 font-family 中添加 'Times New Roman','宋体' */

html {
- font-size: 14px;
+ font-size: 18px;
}

a {
color: #4183C4;
+ text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
position: relative;
- margin-top: 1em;
- margin-bottom: 1em;
+ margin-top: 2rem;
+ margin-bottom: 2rem;
font-weight: bold;
line-height: 1.4;
cursor: text;
}