Skip to content

Commit c7e3394

Browse files
committed
Merge branch 'master' into main
2 parents 11b8414 + 20a028f commit c7e3394

6 files changed

Lines changed: 343 additions & 140 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## Version 1.1.2 (Nov 18, 2020)
4+
5+
### New Diamonds 💎
6+
7+
- Themed editor view blockquote
8+
- Themed editor view tags
9+
10+
### Improvements ⚡️
11+
12+
- Dimming the brightness of internal link brackets in editor view.
13+
- At default bold text, headline, italic text for clutter free editor mode are disabled, due to the changing of the interface while editing, creates an uncomfortable experience with writing.
14+
315
## Version 1.1.1 (Nov 17, 2020)
416

517
### Improvements ⚡️
@@ -33,8 +45,6 @@
3345

3446
- Bold LaTeX disappears in the preview
3547

36-
---
37-
3848
## Version 1.0.4 (Nov 7, 2020)
3949

4050
### New Diamonds 💎
@@ -54,17 +64,13 @@
5464
- Changed the use of border style instead of background style for `hr` tags, as `death-au` found out that background doesn't render in PDF export.
5565
- Fixed the `inline code blocks` keep shaking in preview mode, when typing new letters in the editor.
5666

57-
---
58-
5967
## Version 1.0.3 (Nov 1, 2020)
6068

6169
### Tweaks 💎
6270

6371
- Making link's text much more clear and readable with the custom underline style.
6472
- Changed the editor view of the link style to match the effect of the preview link style.
6573

66-
---
67-
6874
## Version 1.0.2 (Oct 31, 2020)
6975

7076
After being writing and reading for hours myself, I find a few tweaks needed to be made.
@@ -82,8 +88,6 @@ Hope you all like this update, and please feel free to give me feedbacks! Happy
8288
- Obisidian title bar's text had changed to Obsidianite blue, just to stay overall color sync.
8389
- Changed the color of file icon next to the file title, again to stay overall color sync.
8490

85-
---
86-
8791
## Version 1.0.1 (Oct 31, 2020)
8892

8993
### Bug fixes 🐛

README.md

Lines changed: 99 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,108 @@ Obsidian.md custom theme, it's dark and simple but yet still stays sparkles!
2727
** ╚═════╝ ╚═════╝ ╚══════╝╚═╝╚═════╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ ╚══════╝
2828
**
2929
** —— Made with 💎 by TriDiamond
30-
** version 1.1.1
3130
** --------------------------------------------------------------- */
3231
```
3332

33+
## Screenshots
34+
3435
<img src="./images/demo1.png">
3536
<img src="./images/demo2.png">
3637
<img src="./images/demo3.png">
38+
39+
## Customizable Settings
40+
41+
```css
42+
/******************************************
43+
** ██████╗██╗ ██╗███████╗████████╗ ██████╗ ███╗ ███╗██╗███████╗███████╗
44+
** ██╔════╝██║ ██║██╔════╝╚══██╔══╝██╔═══██╗████╗ ████║██║╚══███╔╝██╔════╝
45+
** ██║ ██║ ██║███████╗ ██║ ██║ ██║██╔████╔██║██║ ███╔╝ █████╗
46+
** ██║ ██║ ██║╚════██║ ██║ ██║ ██║██║╚██╔╝██║██║ ███╔╝ ██╔══╝
47+
** ╚██████╗╚██████╔╝███████║ ██║ ╚██████╔╝██║ ╚═╝ ██║██║███████╗███████╗
48+
** ╚═════╝ ╚═════╝ ╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝╚══════╝╚══════╝
49+
** —— You can customized the theme using the variables below
50+
******************************************/
51+
52+
:root {
53+
/***************************************/
54+
/* FONTS RELATED */
55+
/***************************************/
56+
57+
/** Font Customization **/
58+
--default-font: 'Rubik', 'Glow Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
59+
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
60+
61+
/** Main text font weight **/
62+
--body-font-weight: 450;
63+
64+
/** Font family for hash-tags **/
65+
--tag-font-family: 'OperatorMonoSSmLig-Book', 'Glow Sans SC', '华文细黑', 'STXihei',
66+
'PingFang TC', '微软雅黑体', 'Microsoft YaHei New', '微软雅黑', 'Microsoft Yahei', '宋体',
67+
'SimSun', 'Helvetica Neue', 'Helvetica', Arial, sans-serif !important;
68+
}
69+
70+
/**-------------------**
71+
| CUSTOMIZED TAG COLOURS
72+
**--------------------**/
73+
74+
/* For preview mode */
75+
a.tag[href*='#todo'],
76+
a.tag[href*='#待完成'] {
77+
background-color: #be2e5e;
78+
color: #fff;
79+
}
80+
/* For Editor Mode */
81+
.cm-s-obsidian .CodeMirror-line span.cm-tag-todo:not(.cm-formatting-hashtag) {
82+
color: #ee6a96;
83+
}
84+
85+
a.tag[href*='#working-draft'],
86+
a.tag[href*='#进行中'] {
87+
background-color: #4d3ca6;
88+
color: #fff;
89+
}
90+
91+
.cm-s-obsidian .CodeMirror-line span.cm-tag-working-draft:not(.cm-formatting-hashtag) {
92+
color: #a897ff;
93+
}
94+
95+
a.tag[href*='#notes'],
96+
a.tag[href*='#笔记'] {
97+
background-color: #17b978;
98+
color: #fff;
99+
}
100+
101+
.cm-s-obsidian .CodeMirror-line span.cm-tag-notes:not(.cm-formatting-hashtag) {
102+
color: #45e0a2;
103+
}
104+
105+
a.tag[href*='#knowledge'],
106+
a.tag[href*='#知识'] {
107+
background-color: #005792;
108+
color: #fff;
109+
}
110+
111+
.cm-s-obsidian .CodeMirror-line span.cm-tag-knowledge:not(.cm-formatting-hashtag) {
112+
color: #6cbdf3;
113+
}
114+
115+
a.tag[href*='#article'],
116+
a.tag[href*='#文章'] {
117+
background-color: #f95959;
118+
color: #fff;
119+
}
120+
121+
.cm-s-obsidian .CodeMirror-line span.cm-tag-article:not(.cm-formatting-hashtag) {
122+
color: #ff7a7a;
123+
}
124+
125+
a.tag[href*='#ideas'],
126+
a.tag[href*='#想法'] {
127+
background-color: #ffc93c;
128+
color: #000;
129+
}
130+
131+
.cm-s-obsidian .CodeMirror-line span.cm-tag-ideas:not(.cm-formatting-hashtag) {
132+
color: #ffdc82;
133+
}
134+
```

images/demo1.png

84.3 KB
Loading

images/demo2.png

118 KB
Loading

images/demo3.png

-101 KB
Loading

0 commit comments

Comments
 (0)