Skip to content

Commit 82c007f

Browse files
committed
feat: Add more readable font
1 parent ba74cdf commit 82c007f

5 files changed

Lines changed: 31 additions & 13 deletions

File tree

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"editorWhitespace.foreground": "#5a5a5a"
4+
}
5+
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@
99
"type": "git",
1010
"url": "https://github.com/lepoco/.github"
1111
},
12-
"keywords": ["astro", "blog", "wpf", "dotnet", "open-source", "microsoft", "terminal"],
12+
"keywords": [
13+
"astro",
14+
"blog",
15+
"wpf",
16+
"dotnet",
17+
"open-source",
18+
"microsoft",
19+
"terminal"
20+
],
1321
"scripts": {
1422
"dev": "astro dev",
1523
"build": "astro build",
@@ -20,7 +28,7 @@
2028
"astro": "^5.13.2"
2129
},
2230
"devDependencies": {
23-
"@astrojs/sitemap": "^3.2.2",
24-
"@astrojs/rss": "^4.0.11"
31+
"@astrojs/rss": "^4.0.11",
32+
"@astrojs/sitemap": "^3.2.2"
2533
}
26-
}
34+
}

src/styles/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
display: flex;
44
flex-direction: column;
55
padding: 40px;
6-
max-width: 864px;
6+
max-width: 1200px;
77
min-height: 100vh;
88
margin: 0 auto;
99
border-right: 1px solid color-mix(in srgb, var(--accent) 10%, transparent);

src/styles/terminal.css

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,17 @@ html {
6363

6464
body {
6565
font-family:
66-
"Fira Code",
67-
"JetBrains Mono",
68-
Monaco,
69-
Consolas,
70-
"Ubuntu Mono",
71-
monospace;
66+
-apple-system,
67+
BlinkMacSystemFont,
68+
"Segoe UI",
69+
"Roboto",
70+
"Oxygen",
71+
"Ubuntu",
72+
"Cantarell",
73+
"Fira Sans",
74+
"Droid Sans",
75+
"Helvetica Neue",
76+
sans-serif;
7277
font-size: var(--font-size);
7378
font-weight: 400;
7479
line-height: var(--line-height);

0 commit comments

Comments
 (0)