📅  最后修改于: 2023-12-03 14:52:55.781000             🧑  作者: Mango
在 Visual Studio Code 中,您可以通过以下步骤将 Gotham Rounded 字体安装为 CSS 主题。
Ctrl + Shift + P
。Cmd + Shift + P
。Preferences: Open Settings (JSON)
并选择并打开 "Settings.json" 文件。{
"editor.fontFamily": "Gotham Rounded, sans-serif",
"editor.fontWeight": "normal",
"editor.fontSize": 14,
"editor.lineHeight": 24
}
现在,您的 CSS 文件将使用 Gotham Rounded 字体作为主题。以下是一个示例 CSS 代码:
body {
font-family: 'Gotham Rounded', sans-serif;
font-size: 16px;
color: #333;
line-height: 1.5;
}
请注意,如果您的计算机上未安装 Gotham Rounded 字体,您需要先下载并安装它。
希望这对您有所帮助!如果还有其他问题,请随时提问。