Created
March 10, 2025 10:44
-
-
Save matejaputic/db2df3aeb17f050366832f1d41c422c7 to your computer and use it in GitHub Desktop.
Obsidian styles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "minimal-style@@ax1@@dark": "#5DE4C7", | |
| "minimal-style@@ax1@@light": "#5DE4C7", | |
| "minimal-style@@base@@dark": "#252B37", | |
| "minimal-style@@ax3@@dark": "#5FB3A1", | |
| "minimal-style@@bg3@@dark": "#818CC425", | |
| "minimal-style@@tx2@@dark": "#A6ACCD", | |
| "minimal-style@@ui1@@dark": "#E3E4E229", | |
| "minimal-style@@icon-color@@dark": "#A6ACCD", | |
| "minimal-style@@icon-color-active@@dark": "#5FB3A1", | |
| "minimal-style@@icon-color-hover@@dark": "#5DE4C7", | |
| "minimal-style@@icon-color-focused@@dark": "#5DE4C7", | |
| "minimal-style@@tx1@@dark": "#A6ACCD", | |
| "minimal-style@@h1-color@@dark": "#E4F0FB", | |
| "minimal-style@@h2-color@@dark": "#E4F0FB", | |
| "minimal-style@@h3-color@@dark": "#E4F0FB", | |
| "minimal-style@@h4-color@@dark": "#ADD7FF", | |
| "minimal-style@@h5-color@@dark": "#FCC5E9", | |
| "minimal-style@@h6-color@@dark": "#E4F0FB", | |
| "minimal-style@@minimal-tab-text-color-active@@dark": "#E4F0FB", | |
| "minimal-style@@minimal-tab-text-color@@dark": "#868CAD", | |
| "minimal-style@@active-line-on": true, | |
| "minimal-style@@tag-background@@dark": "#FFFAC2", | |
| "minimal-style@@tag-color@@dark": "#252B37", | |
| "minimal-advanced@@styled-scrollbars": true, | |
| "minimal-style@@code-size": "0.6em", | |
| "minimal-style@@h2-style": "italic", | |
| "minimal-style@@h3-style": "normal", | |
| "minimal-style@@h1-l": false, | |
| "minimal-style@@h2-l": false, | |
| "minimal-style@@h1-style": "italic", | |
| "minimal-style@@h1-weight": 200, | |
| "minimal-style@@h2-weight": 200, | |
| "minimal-style@@h1-size": "125%", | |
| "minimal-style@@h3-variant": "all-small-caps", | |
| "minimal-style@@h3-size": "1.2em", | |
| "minimal-style@@h3-weight": 900, | |
| "minimal-style@@h4-size": "1.2em", | |
| "minimal-style@@h4-weight": 900, | |
| "minimal-style@@h5-weight": 900, | |
| "minimal-style@@h5-size": "1.2em", | |
| "minimal-style@@h5-variant": "all-small-caps", | |
| "minimal-style@@h4-variant": "all-small-caps", | |
| "minimal-style@@h6-size": "1.2em", | |
| "minimal-style@@h6-weight": 900, | |
| "minimal-style@@h6-variant": "all-small-caps", | |
| "minimal-style@@h6-style": "italic", | |
| "minimal-style@@heading-spacing": "0", | |
| "minimal-style@@p-spacing": "0" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Overrides */ | |
| body { | |
| /* File navigation tree item color on acitve */ | |
| --nav-item-color-active: #E4F0FB !important; | |
| /* External link color on hover */ | |
| --link-external-color-hover: var(--text-normal) !important; | |
| /* Text */ | |
| /* Line height */ | |
| --line-height: 1.45; | |
| --font-text-size: 1.04195rem !important; | |
| } | |
| /* Tags */ | |
| /* For Live Preview and Edit modes */ | |
| .cm-hashtag { | |
| font-style: italic; | |
| font-family: 'MonaspaceRadon-Italic'; | |
| font-size: 0.6em; | |
| } | |
| /* For Reading (Preview) mode */ | |
| .tag { | |
| font-style: normal; | |
| font-size: 0.6em; | |
| } | |
| /* Links */ | |
| /* For Live Preview and Edit modes */ | |
| .cm-link { | |
| font-family: valkyrie-caps; | |
| font-feature-settings: "c2sc"; | |
| font-size: 0.9em; | |
| } | |
| /* For Reading (Preview) mode */ | |
| .external-link { | |
| font-family: valkyrie-caps; | |
| font-feature-settings: "c2sc"; | |
| font-size: 0.9em; | |
| } | |
| /* Title */ | |
| .inline-title { | |
| border-top-style: solid; | |
| border-top-width: 1px; | |
| border-top-color: #E4F0FB; | |
| margin-bottom: 48px; | |
| } | |
| /* Add a background box to links on hover */ | |
| @media (hover: hover) { | |
| .markdown-source-view.mod-cm6 .cm-link .cm-underline:hover, | |
| .markdown-source-view.mod-cm6 .cm-url .cm-underline:hover { | |
| background: #5fb3a140; | |
| border-radius: 8px; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment