Skip to content

Commit 85b8da6

Browse files
committed
1.1.32
1 parent de106e3 commit 85b8da6

File tree

7 files changed

+45
-28
lines changed

7 files changed

+45
-28
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
.vscode
2+
.vscode
3+
*.zip

dist.css

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
:root {
22
--sn-stylekit-theme-type: "dark";
3-
--sn-stylekit-theme-name: "vscode-theme";
4-
--sn-stylekit-base-font-size: 15px;
5-
--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, "Ubuntu Mono", "Courier New", monospace;
6-
--sn-stylekit-sans-serif-font: "Cantarell", "Noto Sans", "DejaVu Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", var(--sn-stylekit-simplified-chinese-font), sans-serif;
3+
--sn-stylekit-theme-name: "sn-vscode-theme";
4+
--sn-stylekit-base-font-size: 14px;
5+
--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", monospace;
6+
--sn-stylekit-sans-serif-font: "Cantarell", "Noto Sans", "DejaVu Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", var(--sn-stylekit-simplified-chinese-font), sans-serif;
77
--background-1: #252525;
88
--background-2: #1e1e1e;
99
--foreground-color: #D4D4D4;
@@ -20,7 +20,7 @@
2020
--string-color: #ce9178;
2121
--number-color: #b5cea8;
2222
--pink: #c586c0;
23-
--list-1: #e0c7ab;
23+
--list-1: #d7c9b9;
2424
--list-2: #d0e0ab;
2525
--list-3: #abe0d3;
2626
--list-4: #abc2e0;
@@ -102,7 +102,8 @@
102102
color: var(--sn-stylekit-warning-color); }
103103

104104
.CodeMirror .cm-header {
105-
color: var(--sn-stylekit-neutral-color); }
105+
color: var(--sn-stylekit-neutral-color);
106+
line-height: 1.5em; }
106107

107108
.CodeMirror.cm-s-default .cm-comment {
108109
color: var(--comment-color); }
@@ -143,6 +144,11 @@
143144
.CodeMirror .editor-preview ul li > ul {
144145
margin: 0.5em auto 0.75em auto; }
145146

147+
@media screen and (min-width: 526px) {
148+
.EasyMDEContainer .CodeMirror-fullscreen {
149+
max-width: 1000px;
150+
margin: 0 auto; } }
151+
146152
#notes-column .note.selected, .notes .note.selected {
147153
background-color: var(--selected-note);
148154
color: var(--sn-stylekit-contrast-foreground-color); }

ext.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "VS Code Theme",
44
"content_type": "SN|Theme",
55
"area": "themes",
6-
"version": "1.1.30",
6+
"version": "1.1.32",
77
"download_url": "https://laux.wtf/sn/sn-vscode-theme/sn-vscode-theme.zip",
88
"url": "https://laux.wtf/sn/sn-vscode-theme/dist.css",
99
"latest_url": "https://laux.wtf/sn/sn-vscode-theme/ext.json",

package-lock.json

Lines changed: 16 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sn-vscode-theme",
33
"description": "A theme for Standard Notes inspired by the VS Code Dark theme that is easy to the eyes.",
4-
"version": "1.1.30",
4+
"version": "1.1.32",
55
"license": "GPL-3.0",
66
"main": "dist.css",
77
"author": "Marco Laux",

sn-vscode-theme.zip

-294 KB
Binary file not shown.

src/main.scss

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
:root {
22
--sn-stylekit-theme-type: "dark";
3-
--sn-stylekit-theme-name: "vscode-theme";
4-
--sn-stylekit-base-font-size: 15px;
3+
--sn-stylekit-theme-name: "sn-vscode-theme";
4+
--sn-stylekit-base-font-size: 14px;
55

6-
--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, "Ubuntu Mono", "Courier New", monospace;
7-
--sn-stylekit-sans-serif-font: "Cantarell", "Noto Sans", "DejaVu Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", var(--sn-stylekit-simplified-chinese-font), sans-serif;
6+
--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", monospace;
7+
--sn-stylekit-sans-serif-font: "Cantarell", "Noto Sans", "DejaVu Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", var(--sn-stylekit-simplified-chinese-font), sans-serif;
88

99
--background-1: #252525;
1010
--background-2: #1e1e1e;
@@ -26,7 +26,7 @@
2626
--number-color: #b5cea8;
2727
--pink: #c586c0;
2828

29-
--list-1: #e0c7ab;
29+
--list-1: #d7c9b9;
3030
--list-2: #d0e0ab;
3131
--list-3: #abe0d3;
3232
--list-4: #abc2e0;
@@ -144,6 +144,7 @@
144144

145145
.cm-header{
146146
color: var(--sn-stylekit-neutral-color);
147+
line-height: 1.5em;
147148
}
148149

149150
// code editor
@@ -205,6 +206,13 @@
205206
}
206207
}
207208

209+
@media screen and (min-width: 526px){
210+
.EasyMDEContainer .CodeMirror-fullscreen{
211+
max-width: 1000px;
212+
margin: 0 auto;
213+
}
214+
}
215+
208216
#notes-column .note.selected, .notes .note.selected {
209217
background-color: var(--selected-note);
210218
color: var(--sn-stylekit-contrast-foreground-color);

0 commit comments

Comments
 (0)