@standardnotes/standard-blue 1.1.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 +10 -0
- package/LICENSE.md +0 -0
- package/README.md +5 -0
- package/dist/dist.css +48 -0
- package/package.json +25 -0
- package/src/main.scss +66 -0
- package/standard-blue-theme-screenshot.png +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 1.1.0 (2024-02-22)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add Standard Blue theme ([#25](https://github.com/standardnotes/plugins/issues/25)) ([7d32dfc](https://github.com/standardnotes/plugins/commit/7d32dfc7b55077236b2f040e0ba8075f7dd61408))
|
package/LICENSE.md
ADDED
|
File without changes
|
package/README.md
ADDED
package/dist/dist.css
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--sn-stylekit-editor-font-family: "Lato", sans-serif;
|
|
3
|
+
--sn-stylekit-sans-serif-font: "Lato", sans-serif;
|
|
4
|
+
--sn-stylekit-neutral-color: #6b97ff;
|
|
5
|
+
--sn-stylekit-neutral-contrast-color: white;
|
|
6
|
+
--sn-stylekit-info-color-darkened: #050505;
|
|
7
|
+
--sn-stylekit-info-color: #4279ff;
|
|
8
|
+
--sn-stylekit-info-contrast-color: white;
|
|
9
|
+
--sn-stylekit-success-color: #3965ca;
|
|
10
|
+
--sn-stylekit-success-contrast-color: white;
|
|
11
|
+
--sn-stylekit-warning-color: #f6a200;
|
|
12
|
+
--sn-stylekit-warning-contrast-color: white;
|
|
13
|
+
--sn-stylekit-danger-color: #f80324;
|
|
14
|
+
--sn-stylekit-danger-contrast-color: white;
|
|
15
|
+
--sn-stylekit-shadow-color: #d7e3fc;
|
|
16
|
+
--sn-stylekit-background-color: #edf2fb;
|
|
17
|
+
--sn-stylekit-border-color: #abc4ff;
|
|
18
|
+
--sn-stylekit-foreground-color: black;
|
|
19
|
+
--navigation-item-selected-background-color: #edf2fb;
|
|
20
|
+
--sn-stylekit-info-backdrop-color: #abc4ff;
|
|
21
|
+
--sn-stylekit-contrast-background-color: #e2eafc;
|
|
22
|
+
--sn-stylekit-contrast-foreground-color: #28385c;
|
|
23
|
+
--sn-stylekit-contrast-border-color: #abc4ff;
|
|
24
|
+
--sn-stylekit-secondary-background-color: #dbe8ff;
|
|
25
|
+
--sn-stylekit-secondary-foreground-color: #2e2e2e;
|
|
26
|
+
--sn-stylekit-secondary-border-color: #abc4ff;
|
|
27
|
+
--sn-stylekit-secondary-contrast-background-color: #e3e3e3;
|
|
28
|
+
--sn-stylekit-secondary-contrast-foreground-color: #2e2e2e;
|
|
29
|
+
--sn-styleki--secondary-contrast-border-color: #abc4ff;
|
|
30
|
+
--sn-stylekit-editor-background-color: var(--sn-stylekit-background-color);
|
|
31
|
+
--sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color);
|
|
32
|
+
--sn-stylekit-passive-color-0: var(--sn-stylekit-neutral-color);
|
|
33
|
+
--sn-stylekit-passive-color-3: var(--sn-stylekit-contrast-border-color);
|
|
34
|
+
--sn-stylekit-passive-color-4: var(--sn-stylekit-secondary-background-color);
|
|
35
|
+
--sn-stylekit-passive-color-4-opacity-variant: #c2d4ff;
|
|
36
|
+
--sn-stylekit-passive-color-5: var(--sn-stylekit-secondary-background-color);
|
|
37
|
+
--sn-stylekit-paragraph-text-color: #454545;
|
|
38
|
+
--preferences-navigation-icon-color: #050505;
|
|
39
|
+
--sn-stylekit-input-border-color: #212632;
|
|
40
|
+
--sn-stylekit-scrollbar-thumb-color: #b6ccfe;
|
|
41
|
+
--sn-stylekit-scrollbar-track-border-color: #d7e3fc;
|
|
42
|
+
--sn-stylekit-general-border-radius: 2px;
|
|
43
|
+
--sn-stylekit-theme-type: light;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
#blocks-editor hr:after {
|
|
47
|
+
background-color: #abc4ff;
|
|
48
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@standardnotes/standard-blue",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"main": "dist/dist.css",
|
|
5
|
+
"author": "Kieran Colfer",
|
|
6
|
+
"description": "A light blue theme for Standard Notes.",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"sn": {
|
|
11
|
+
"name": "Standard Blue",
|
|
12
|
+
"content_type": "SN|Theme",
|
|
13
|
+
"area": "themes",
|
|
14
|
+
"main": "dist/dist.css",
|
|
15
|
+
"showInGallery": true
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "webpack --entry ./src/main.scss --config ../theme.webpack.config.js",
|
|
19
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"webpack": "*"
|
|
23
|
+
},
|
|
24
|
+
"gitHead": "e3a20a455f6f2425e41ff47213cd1dff021d387c"
|
|
25
|
+
}
|
package/src/main.scss
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--sn-stylekit-editor-font-family: "Lato", sans-serif;
|
|
3
|
+
--sn-stylekit-sans-serif-font: "Lato", sans-serif;
|
|
4
|
+
|
|
5
|
+
--sn-stylekit-neutral-color: #6b97ff;
|
|
6
|
+
--sn-stylekit-neutral-contrast-color: white;
|
|
7
|
+
--sn-stylekit-info-color-darkened: #050505;
|
|
8
|
+
|
|
9
|
+
--sn-stylekit-info-color: #4279ff;
|
|
10
|
+
--sn-stylekit-info-contrast-color: white;
|
|
11
|
+
|
|
12
|
+
--sn-stylekit-success-color: #3965ca;
|
|
13
|
+
--sn-stylekit-success-contrast-color: white;
|
|
14
|
+
|
|
15
|
+
--sn-stylekit-warning-color: #f6a200;
|
|
16
|
+
--sn-stylekit-warning-contrast-color: white;
|
|
17
|
+
|
|
18
|
+
--sn-stylekit-danger-color: #f80324;
|
|
19
|
+
--sn-stylekit-danger-contrast-color: white;
|
|
20
|
+
|
|
21
|
+
--sn-stylekit-shadow-color: #d7e3fc;
|
|
22
|
+
--sn-stylekit-background-color: #edf2fb;
|
|
23
|
+
--sn-stylekit-border-color: #abc4ff;
|
|
24
|
+
--sn-stylekit-foreground-color: black;
|
|
25
|
+
|
|
26
|
+
--navigation-item-selected-background-color: #edf2fb;
|
|
27
|
+
--sn-stylekit-info-backdrop-color: #abc4ff;
|
|
28
|
+
|
|
29
|
+
--sn-stylekit-contrast-background-color: #e2eafc;
|
|
30
|
+
--sn-stylekit-contrast-foreground-color: #28385c;
|
|
31
|
+
--sn-stylekit-contrast-border-color: #abc4ff;
|
|
32
|
+
|
|
33
|
+
--sn-stylekit-secondary-background-color: #dbe8ff;
|
|
34
|
+
--sn-stylekit-secondary-foreground-color: #2e2e2e;
|
|
35
|
+
--sn-stylekit-secondary-border-color: #abc4ff;
|
|
36
|
+
|
|
37
|
+
--sn-stylekit-secondary-contrast-background-color: #e3e3e3;
|
|
38
|
+
--sn-stylekit-secondary-contrast-foreground-color: #2e2e2e;
|
|
39
|
+
--sn-styleki--secondary-contrast-border-color: #abc4ff;
|
|
40
|
+
|
|
41
|
+
--sn-stylekit-editor-background-color: var(--sn-stylekit-background-color);
|
|
42
|
+
--sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color);
|
|
43
|
+
|
|
44
|
+
--sn-stylekit-passive-color-0: var(--sn-stylekit-neutral-color);
|
|
45
|
+
--sn-stylekit-passive-color-3: var(--sn-stylekit-contrast-border-color);
|
|
46
|
+
--sn-stylekit-passive-color-4: var(--sn-stylekit-secondary-background-color);
|
|
47
|
+
--sn-stylekit-passive-color-4-opacity-variant: #c2d4ff;
|
|
48
|
+
--sn-stylekit-passive-color-5: var(--sn-stylekit-secondary-background-color);
|
|
49
|
+
|
|
50
|
+
--sn-stylekit-paragraph-text-color: #454545;
|
|
51
|
+
|
|
52
|
+
--preferences-navigation-icon-color: #050505;
|
|
53
|
+
|
|
54
|
+
--sn-stylekit-input-border-color: #212632;
|
|
55
|
+
|
|
56
|
+
--sn-stylekit-scrollbar-thumb-color: #b6ccfe;
|
|
57
|
+
--sn-stylekit-scrollbar-track-border-color: #d7e3fc;
|
|
58
|
+
|
|
59
|
+
--sn-stylekit-general-border-radius: 2px;
|
|
60
|
+
|
|
61
|
+
--sn-stylekit-theme-type: light;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
#blocks-editor hr:after {
|
|
65
|
+
background-color: #abc4ff;
|
|
66
|
+
}
|
|
Binary file
|