mirror of
https://github.com/hearth-code/hearthcode-obsidian.git
synced 2026-07-22 04:50:27 +00:00
Sync HearthCode 3.3.0
This commit is contained in:
parent
c7f1cc01f3
commit
003ffc562a
3 changed files with 45 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "HearthCode",
|
||||
"version": "3.2.0",
|
||||
"version": "3.3.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"author": "HearthCode",
|
||||
"authorUrl": "https://theme.hearthcode.dev"
|
||||
|
|
|
|||
42
theme.css
42
theme.css
|
|
@ -1,6 +1,48 @@
|
|||
/* Auto-generated by scripts/generate-obsidian-app-theme.mjs - DO NOT EDIT */
|
||||
/* Theme: HearthCode */
|
||||
|
||||
/* @settings
|
||||
|
||||
name: 'HearthCode'
|
||||
id: 'hearthcode'
|
||||
settings:
|
||||
- id: 'hearthcode-typography'
|
||||
title: 'Typography'
|
||||
type: 'heading'
|
||||
level: 1
|
||||
- id: 'hearthcode-mono-notes'
|
||||
title: 'Monospace note font'
|
||||
description: 'Render notes in your configured monospace font for a typewriter-style editing feel.'
|
||||
type: 'class-toggle'
|
||||
default: false
|
||||
- id: 'hearthcode-no-italics'
|
||||
title: 'Disable comment italics'
|
||||
description: 'Render code-comment italics upright. Mirrors the VS Code hearthcode.disableItalics option and helps CJK fonts that fake-oblique instead of slanting.'
|
||||
type: 'class-toggle'
|
||||
default: false
|
||||
- id: 'file-line-width'
|
||||
title: 'Readable line length'
|
||||
description: 'Column width for readable line length, in rem. Applies when the Readable line length setting is enabled.'
|
||||
type: 'variable-number-slider'
|
||||
default: 40
|
||||
min: 30
|
||||
max: 90
|
||||
step: 1
|
||||
format: 'rem'
|
||||
|
||||
*/
|
||||
|
||||
/* Style Settings overrides (consumed by the @settings toggles above). */
|
||||
|
||||
body.hearthcode-mono-notes {
|
||||
--font-text: var(--font-monospace);
|
||||
}
|
||||
|
||||
body.hearthcode-no-italics .cm-s-obsidian span.cm-comment,
|
||||
body.hearthcode-no-italics .markdown-source-view.mod-cm6 .cm-line .cm-comment {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.theme-dark {
|
||||
--background-modifier-active-hover: #3a362e;
|
||||
--background-modifier-border: #3c3a32;
|
||||
|
|
|
|||
|
|
@ -31,5 +31,6 @@
|
|||
"3.1.2": "1.0.0",
|
||||
"3.1.3": "1.0.0",
|
||||
"3.1.4": "1.0.0",
|
||||
"3.2.0": "1.0.0"
|
||||
"3.2.0": "1.0.0",
|
||||
"3.3.0": "1.0.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue