Skip to content

Commit

Permalink
1.1.32
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolaux committed Nov 28, 2021
1 parent de106e3 commit 85b8da6
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
.vscode
.vscode
*.zip
18 changes: 12 additions & 6 deletions dist.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
:root {
--sn-stylekit-theme-type: "dark";
--sn-stylekit-theme-name: "vscode-theme";
--sn-stylekit-base-font-size: 15px;
--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, "Ubuntu Mono", "Courier New", monospace;
--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;
--sn-stylekit-theme-name: "sn-vscode-theme";
--sn-stylekit-base-font-size: 14px;
--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", monospace;
--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;
--background-1: #252525;
--background-2: #1e1e1e;
--foreground-color: #D4D4D4;
Expand All @@ -20,7 +20,7 @@
--string-color: #ce9178;
--number-color: #b5cea8;
--pink: #c586c0;
--list-1: #e0c7ab;
--list-1: #d7c9b9;
--list-2: #d0e0ab;
--list-3: #abe0d3;
--list-4: #abc2e0;
Expand Down Expand Up @@ -102,7 +102,8 @@
color: var(--sn-stylekit-warning-color); }

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

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

@media screen and (min-width: 526px) {
.EasyMDEContainer .CodeMirror-fullscreen {
max-width: 1000px;
margin: 0 auto; } }

#notes-column .note.selected, .notes .note.selected {
background-color: var(--selected-note);
color: var(--sn-stylekit-contrast-foreground-color); }
Expand Down
2 changes: 1 addition & 1 deletion ext.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "VS Code Theme",
"content_type": "SN|Theme",
"area": "themes",
"version": "1.1.30",
"version": "1.1.32",
"download_url": "https://laux.wtf/sn/sn-vscode-theme/sn-vscode-theme.zip",
"url": "https://laux.wtf/sn/sn-vscode-theme/dist.css",
"latest_url": "https://laux.wtf/sn/sn-vscode-theme/ext.json",
Expand Down
30 changes: 16 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sn-vscode-theme",
"description": "A theme for Standard Notes inspired by the VS Code Dark theme that is easy to the eyes.",
"version": "1.1.30",
"version": "1.1.32",
"license": "GPL-3.0",
"main": "dist.css",
"author": "Marco Laux",
Expand Down
Binary file removed sn-vscode-theme.zip
Binary file not shown.
18 changes: 13 additions & 5 deletions src/main.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
:root {
--sn-stylekit-theme-type: "dark";
--sn-stylekit-theme-name: "vscode-theme";
--sn-stylekit-base-font-size: 15px;
--sn-stylekit-theme-name: "sn-vscode-theme";
--sn-stylekit-base-font-size: 14px;

--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, "Ubuntu Mono", "Courier New", monospace;
--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;
--sn-stylekit-monospace-font: "Noto Sans Mono", "DejaVu Sans Mono", monospace;
--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;

--background-1: #252525;
--background-2: #1e1e1e;
Expand All @@ -26,7 +26,7 @@
--number-color: #b5cea8;
--pink: #c586c0;

--list-1: #e0c7ab;
--list-1: #d7c9b9;
--list-2: #d0e0ab;
--list-3: #abe0d3;
--list-4: #abc2e0;
Expand Down Expand Up @@ -144,6 +144,7 @@

.cm-header{
color: var(--sn-stylekit-neutral-color);
line-height: 1.5em;
}

// code editor
Expand Down Expand Up @@ -205,6 +206,13 @@
}
}

@media screen and (min-width: 526px){
.EasyMDEContainer .CodeMirror-fullscreen{
max-width: 1000px;
margin: 0 auto;
}
}

#notes-column .note.selected, .notes .note.selected {
background-color: var(--selected-note);
color: var(--sn-stylekit-contrast-foreground-color);
Expand Down

0 comments on commit 85b8da6

Please sign in to comment.