@standardnotes/community-cdn 0.6.8 → 0.7.1
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 +10 -0
- package/dist/entries/com.sncommunity.dracula-theme.json +14 -0
- package/dist/packages.json +14 -0
- package/dist/static/com.sncommunity.dracula-theme/dist/dist.css +76 -0
- package/dist/zips/com.sncommunity.dracula-theme.zip +0 -0
- package/package.json +2 -2
- package/plugins.json +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.1](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.7.0...@standardnotes/community-cdn@0.7.1) (2022-12-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @standardnotes/community-cdn
|
|
9
|
+
|
|
10
|
+
# [0.7.0](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.6.8...@standardnotes/community-cdn@0.7.0) (2022-12-07)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add Dracula theme ([6b93b30](https://github.com/standardnotes/plugins/commit/6b93b3005acaceb0d51ebabe6fcb9e7aa12f152e))
|
|
15
|
+
|
|
6
16
|
## [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
17
|
|
|
8
18
|
**Note:** Version bump only for package @standardnotes/community-cdn
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Dracula",
|
|
3
|
+
"content_type": "SN|Component",
|
|
4
|
+
"area": "themes",
|
|
5
|
+
"main": "dist/dist.css",
|
|
6
|
+
"identifier": "com.sncommunity.dracula-theme",
|
|
7
|
+
"version": "1.1.0",
|
|
8
|
+
"url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.dracula-theme/dist/dist.css",
|
|
9
|
+
"download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.dracula-theme.zip",
|
|
10
|
+
"latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.dracula-theme.json",
|
|
11
|
+
"publisher": "Standard Notes",
|
|
12
|
+
"base64Hash": "c887971c48cb87bdb4049acbf08c78e2c6f148920d512b8c1fcc7837ec5dbcd4",
|
|
13
|
+
"binaryHash": "51be649a4119d481b37d3a605dca602056f3499b821232d0a0b9eabcfec883b0"
|
|
14
|
+
}
|
package/dist/packages.json
CHANGED
|
@@ -83,5 +83,19 @@
|
|
|
83
83
|
"publisher": "Standard Notes Retired",
|
|
84
84
|
"base64Hash": "4fbac0f7632264c6b5dffe1f2ce257e2fb40446f1e08ab198d544435953b38e2",
|
|
85
85
|
"binaryHash": "e6e3dc95798f9e0d9236788c8fea54692df9e3c104015aa695dbd47f4988d7be"
|
|
86
|
+
},
|
|
87
|
+
"com.sncommunity.dracula-theme": {
|
|
88
|
+
"name": "Dracula",
|
|
89
|
+
"content_type": "SN|Component",
|
|
90
|
+
"area": "themes",
|
|
91
|
+
"main": "dist/dist.css",
|
|
92
|
+
"identifier": "com.sncommunity.dracula-theme",
|
|
93
|
+
"version": "1.1.0",
|
|
94
|
+
"url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.dracula-theme/dist/dist.css",
|
|
95
|
+
"download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.dracula-theme.zip",
|
|
96
|
+
"latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.dracula-theme.json",
|
|
97
|
+
"publisher": "Standard Notes",
|
|
98
|
+
"base64Hash": "c887971c48cb87bdb4049acbf08c78e2c6f148920d512b8c1fcc7837ec5dbcd4",
|
|
99
|
+
"binaryHash": "51be649a4119d481b37d3a605dca602056f3499b821232d0a0b9eabcfec883b0"
|
|
86
100
|
}
|
|
87
101
|
}
|
|
@@ -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
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@standardnotes/community-cdn",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
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": "
|
|
20
|
+
"gitHead": "ff612ea699e5d124c478ff4245598a0a5e6d003c"
|
|
21
21
|
}
|
package/plugins.json
CHANGED