@standardnotes/community-cdn 0.6.8 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.7.0](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.6.8...@standardnotes/community-cdn@0.7.0) (2022-12-07)
7
+
8
+ ### Features
9
+
10
+ * add Dracula theme ([6b93b30](https://github.com/standardnotes/plugins/commit/6b93b3005acaceb0d51ebabe6fcb9e7aa12f152e))
11
+
6
12
  ## [0.6.8](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.6.7...@standardnotes/community-cdn@0.6.8) (2022-11-04)
7
13
 
8
14
  **Note:** Version bump only for package @standardnotes/community-cdn
@@ -0,0 +1,11 @@
1
+ {
2
+ "main": "dist/dist.css",
3
+ "identifier": "com.sncommunity.dracula-theme",
4
+ "version": "1.0.0",
5
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.dracula-theme/dist/dist.css",
6
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.dracula-theme.zip",
7
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.dracula-theme.json",
8
+ "publisher": "Standard Notes",
9
+ "base64Hash": "9a1d4714a4a775fa9b0898bf7fd75d938572659f01b044b45edf651913b69870",
10
+ "binaryHash": "a84f65f0a2ccc056dc20cd4be7c15e0f69d88c80430147acef8b7fc8b2b997c1"
11
+ }
@@ -83,5 +83,16 @@
83
83
  "publisher": "Standard Notes Retired",
84
84
  "base64Hash": "4fbac0f7632264c6b5dffe1f2ce257e2fb40446f1e08ab198d544435953b38e2",
85
85
  "binaryHash": "e6e3dc95798f9e0d9236788c8fea54692df9e3c104015aa695dbd47f4988d7be"
86
+ },
87
+ "com.sncommunity.dracula-theme": {
88
+ "main": "dist/dist.css",
89
+ "identifier": "com.sncommunity.dracula-theme",
90
+ "version": "1.0.0",
91
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.dracula-theme/dist/dist.css",
92
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.dracula-theme.zip",
93
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.dracula-theme.json",
94
+ "publisher": "Standard Notes",
95
+ "base64Hash": "9a1d4714a4a775fa9b0898bf7fd75d938572659f01b044b45edf651913b69870",
96
+ "binaryHash": "a84f65f0a2ccc056dc20cd4be7c15e0f69d88c80430147acef8b7fc8b2b997c1"
86
97
  }
87
98
  }
@@ -0,0 +1,76 @@
1
+ :root {
2
+ --background: #282a36;
3
+ --secondary-background: #303342;
4
+ --current-line: #44475a;
5
+ --foreground: #f8f8f2;
6
+ --comment: #6272a4;
7
+ --red: #ff5555;
8
+ --orange: #ffb86c;
9
+ --green: #50fa7b;
10
+ --pink: #ff79c6;
11
+ --purple: #bd93f9;
12
+ --cyan: #8be9fd;
13
+ --yellow: #f1fa8c;
14
+ --bar-color: rgb(32, 34, 49);
15
+ --darker-background: rgb(25, 26, 33);
16
+ --darker-background-border: rgb(32, 34, 49);
17
+ --sn-stylekit-accessory-tint-color-1: var(--purple);
18
+ --sn-stylekit-accessory-tint-color-2: var(--pink);
19
+ --sn-stylekit-accessory-tint-color-3: var(--orange);
20
+ --sn-stylekit-accessory-tint-color-4: var(--cyan);
21
+ --sn-stylekit-accessory-tint-color-5: var(--green);
22
+ --sn-stylekit-accessory-tint-color-6: var(--yellow);
23
+ --highlight-color: var(--comment);
24
+ --sn-component-foreground-color: var(--foreground);
25
+ --sn-component-background-color: var(--background);
26
+ --sn-component-foreground-highlight-color: var(--highlight-color);
27
+ --sn-component-outer-border-color: var(--comment);
28
+ --sn-component-inner-border-color: var(--foreground);
29
+ --sn-stylekit-shadow-color: var(--comment);
30
+ --sn-stylekit-info-color: var(--pink);
31
+ --sn-stylekit-info-contrast-color: var(--background);
32
+ --sn-stylekit-neutral-color: var(--purple);
33
+ --sn-stylekit-neutral-contrast-color: var(--foreground);
34
+ --sn-stylekit-success-color: var(--green);
35
+ --sn-stylekit-success-contrast-color: var(--background);
36
+ --sn-stylekit-warning-color: var(--orange);
37
+ --sn-stylekit-warning-contrast-color: var(--background);
38
+ --sn-stylekit-danger-color: var(--red);
39
+ --sn-stylekit-danger-contrast-color: var(--foreground);
40
+ --sn-stylekit-editor-background-color: var(--sn-stylekit-background-color);
41
+ --sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color);
42
+ --sn-stylekit-background-color: var(--background);
43
+ --sn-stylekit-foreground-color: var(--foreground);
44
+ --sn-stylekit-border-color: var(--darker-background-border);
45
+ --sn-stylekit-contrast-background-color: var(--bar-color);
46
+ --sn-stylekit-contrast-foreground-color: var(--foreground);
47
+ --sn-stylekit-contrast-border-color: var(--footer-border);
48
+ --sn-stylekit-secondary-background-color: var(--secondary-background);
49
+ --sn-stylekit-secondary-foreground-color: var(--foreground);
50
+ --sn-stylekit-secondary-border-color: var(--darker-background-border);
51
+ --sn-stylekit-secondary-contrast-background-color: var(--current-line);
52
+ --sn-stylekit-secondary-contrast-foreground-color: var(--foreground);
53
+ --sn-stylekit-secondary-contrast-border-color: var(--foreground);
54
+ --sn-stylekit-paragraph-text-color: var(--foreground);
55
+ --sn-desktop-titlebar-bg-color: var(--background);
56
+ --sn-desktop-titlebar-border-color: var(--comment);
57
+ --sn-desktop-titlebar-ui-color: var(--foreground);
58
+ --sn-desktop-titlebar-ui-hover-color: var(--highlight-color);
59
+ --sn-stylekit-scrollbar-track-border-color: var(--comment);
60
+ --sn-stylekit-scrollbar-thumb-color: var(--sn-stylekit-info-color);
61
+ --sn-stylekit-grey-5: var(--highlight-color);
62
+ --sn-stylekit-grey-4-opacity-variant: var(--current-line);
63
+ --sn-stylekit-passive-color-4: #0e0c11;
64
+ --sn-stylekit-passive-color-4-opacity-variant: #0000003d;
65
+ --sn-stylekit-passive-color-3: #3d4367;
66
+ --sn-stylekit-passive-color-5: #080507;
67
+ --navigation-item-selected-background-color:var(--sn-stylekit-secondary-contrast-background-color);
68
+ }
69
+
70
+ .sn-component .sk-panel .sk-panel-footer .left {
71
+ color: var(--foreground);
72
+ }
73
+
74
+ #plus-editor label kbd {
75
+ background-color: var(--sn-stylekit-background-color);
76
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standardnotes/community-cdn",
3
- "version": "0.6.8",
3
+ "version": "0.7.0",
4
4
  "license": "AGPL-3.0-or-later",
5
5
  "author": "Standard Notes Community",
6
6
  "publishConfig": {
@@ -17,5 +17,5 @@
17
17
  "minimatch": "^5.1.0",
18
18
  "typescript": "*"
19
19
  },
20
- "gitHead": "81620cb3513b4bf72ce5a8752fa1b828b620a4f4"
20
+ "gitHead": "2d331c2e607b5f7ea90c9a37e7636572198fc595"
21
21
  }
package/plugins.json CHANGED
@@ -18,5 +18,9 @@
18
18
  {
19
19
  "identifier": "com.sncommunity.markdown-math",
20
20
  "staticFiles": ["index.html", "dist", "build", "package.json"]
21
+ },
22
+ {
23
+ "identifier": "com.sncommunity.dracula-theme",
24
+ "staticFiles": ["dist", "package.json"]
21
25
  }
22
26
  ]