-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathobsidian.css
More file actions
99 lines (81 loc) · 2.46 KB
/
obsidian.css
File metadata and controls
99 lines (81 loc) · 2.46 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* Omarchy Theme for Obsidian */
.theme-dark, .theme-light {
/* Core colors */
--background-primary: #0B0C0C;
--background-primary-alt: #0B0C0C;
--background-secondary: #0B0C0C;
--background-secondary-alt: #0B0C0C;
--text-normal: #fbfcff;
/* Selection colors */
--text-selection: #fbfcff;
/* Border color */
--background-modifier-border: #666666;
/* Semantic heading colors */
--text-title-h1: #f24331;
--text-title-h2: #6E6A64;
--text-title-h3: #ed9a1d;
--text-title-h4: #666a6d;
--text-title-h5: #aaa8a4;
--text-title-h6: #aaa8a4;
/* Links and accents */
--text-link: #666a6d;
--text-accent: #6E6A64;
--text-accent-hover: #6E6A64;
--interactive-accent: #6E6A64;
--interactive-accent-hover: #6E6A64;
/* Muted text */
--text-muted: color-mix(in srgb, #fbfcff 70%, transparent);
--text-faint: color-mix(in srgb, #fbfcff 55%, transparent);
/* Code */
--code-normal: #EBD698;
/* Errors and success */
--text-error: #f24331;
--text-error-hover: #f24331;
--text-success: #6E6A64;
/* Tags */
--tag-color: #EBD698;
--tag-background: #666666;
/* Graph */
--graph-line: #666666;
--graph-node: #6E6A64;
--graph-node-focused: #666a6d;
--graph-node-tag: #EBD698;
--graph-node-attachment: #6E6A64;
}
/* Headers */
.cm-header-1, .markdown-rendered h1 { color: var(--text-title-h1); }
.cm-header-2, .markdown-rendered h2 { color: var(--text-title-h2); }
.cm-header-3, .markdown-rendered h3 { color: var(--text-title-h3); }
.cm-header-4, .markdown-rendered h4 { color: var(--text-title-h4); }
.cm-header-5, .markdown-rendered h5 { color: var(--text-title-h5); }
.cm-header-6, .markdown-rendered h6 { color: var(--text-title-h6); }
/* Code blocks */
.markdown-rendered code {
color: #EBD698;
}
/* Syntax highlighting */
.cm-s-obsidian span.cm-keyword { color: #f24331; }
.cm-s-obsidian span.cm-string { color: #6E6A64; }
.cm-s-obsidian span.cm-number { color: #ed9a1d; }
.cm-s-obsidian span.cm-comment { color: #666666; }
.cm-s-obsidian span.cm-operator { color: #666a6d; }
.cm-s-obsidian span.cm-def { color: #666a6d; }
/* Links */
.markdown-rendered a {
color: var(--text-link);
}
/* Blockquotes */
.markdown-rendered blockquote {
border-left-color: #6E6A64;
}
/* Active elements */
.workspace-leaf.mod-active .workspace-leaf-header-title {
color: var(--interactive-accent);
}
.nav-file-title.is-active {
color: var(--interactive-accent);
}
/* Search results */
.search-result-file-title {
color: var(--interactive-accent);
}