@standardnotes/coffee-theme 1.0.2
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 +12 -0
- package/package.json +21 -0
- package/plugin.json +9 -0
- package/src/theme.css +79 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
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.0.2 (2026-01-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @standardnotes/coffee-theme
|
|
9
|
+
|
|
10
|
+
## 1.0.1 (2026-01-19)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package com.sncommunity.coffee-theme
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@standardnotes/coffee-theme",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "A coffee inspired theme for Standard Notes.",
|
|
5
|
+
"author": "Passkeys",
|
|
6
|
+
"license": "GPL-3.0",
|
|
7
|
+
"main": "dist/theme.css",
|
|
8
|
+
"sn": {
|
|
9
|
+
"name": "Coffee Theme",
|
|
10
|
+
"content_type": "SN|Theme",
|
|
11
|
+
"area": "themes",
|
|
12
|
+
"main": "dist/theme.css",
|
|
13
|
+
"showInGallery": true
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "shx rm -rf dist && shx mkdir -p dist && shx cp src/*.css dist/ && shx cp plugin.json dist/"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"shx": "^0.4.0"
|
|
20
|
+
}
|
|
21
|
+
}
|
package/plugin.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"identifier": "com.sncommunity.coffee-theme",
|
|
3
|
+
"name": "Coffee Theme",
|
|
4
|
+
"content_type": "SN|Theme",
|
|
5
|
+
"area": "themes",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"description": "A coffee inspired theme for Standard Notes.",
|
|
8
|
+
"url": "https://github.com/PASSK3YS/plugins/raw/main/packages/com.sncommunity.coffee-theme/dist/plugin.json"
|
|
9
|
+
}
|
package/src/theme.css
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background-1: #231713;
|
|
3
|
+
--background-2: #120A08;
|
|
4
|
+
--background-3: #3E2C26;
|
|
5
|
+
--border-color: #120B09;
|
|
6
|
+
|
|
7
|
+
--foreground-1: #EAE0D5;
|
|
8
|
+
--foreground-2: #C6AC8F;
|
|
9
|
+
--highlight: #D4A373;
|
|
10
|
+
|
|
11
|
+
--sn-stylekit-neutral-color: var(--foreground-2);
|
|
12
|
+
--sn-stylekit-neutral-contrast-color: #1A110E;
|
|
13
|
+
|
|
14
|
+
--sn-stylekit-info-color: var(--highlight);
|
|
15
|
+
--sn-stylekit-info-color-darkened: #B0825B;
|
|
16
|
+
--sn-stylekit-info-contrast-color: #1A110E;
|
|
17
|
+
--sn-stylekit-info-backdrop-color: var(--background-3);
|
|
18
|
+
|
|
19
|
+
--sn-stylekit-success-color: #8F9779;
|
|
20
|
+
--sn-stylekit-success-contrast-color: #1A110E;
|
|
21
|
+
|
|
22
|
+
--sn-stylekit-warning-color: #E6C229;
|
|
23
|
+
--sn-stylekit-warning-contrast-color: #1A110E;
|
|
24
|
+
|
|
25
|
+
--sn-stylekit-danger-color: #A33B3B;
|
|
26
|
+
--sn-stylekit-danger-contrast-color: #EAE0D5;
|
|
27
|
+
|
|
28
|
+
--sn-stylekit-shadow-color: var(--border-color);
|
|
29
|
+
--sn-stylekit-background-color: var(--background-1);
|
|
30
|
+
|
|
31
|
+
--sn-stylekit-border-color: var(--border-color);
|
|
32
|
+
--sn-stylekit-foreground-color: var(--foreground-1);
|
|
33
|
+
|
|
34
|
+
--sn-stylekit-contrast-background-color: var(--background-3);
|
|
35
|
+
--sn-stylekit-contrast-border-color: var(--border-color);
|
|
36
|
+
--sn-stylekit-contrast-foreground-color: var(--foreground-1);
|
|
37
|
+
|
|
38
|
+
--sn-stylekit-secondary-background-color: var(--background-2);
|
|
39
|
+
--sn-stylekit-secondary-foreground-color: var(--foreground-1);
|
|
40
|
+
--sn-stylekit-secondary-border-color: var(--border-color);
|
|
41
|
+
|
|
42
|
+
--sn-stylekit-secondary-contrast-border-color: var(--background-3);
|
|
43
|
+
--sn-stylekit-secondary-contrast-background-color: var(--background-2);
|
|
44
|
+
--sn-stylekit-secondary-contrast-foreground-color: var(--foreground-1);
|
|
45
|
+
|
|
46
|
+
--sn-stylekit-editor-background-color: var(--background-1);
|
|
47
|
+
--sn-stylekit-editor-foreground-color: var(--foreground-1);
|
|
48
|
+
|
|
49
|
+
--sn-stylekit-paragraph-text-color: var(--foreground-1);
|
|
50
|
+
|
|
51
|
+
--sn-stylekit-input-placeholder-color: var(--foreground-2);
|
|
52
|
+
--sn-stylekit-input-border-color: var(--highlight);
|
|
53
|
+
|
|
54
|
+
--sn-stylekit-scrollbar-thumb-color: #5D473B;
|
|
55
|
+
--sn-stylekit-scrollbar-track-border-color: var(--border-color);
|
|
56
|
+
|
|
57
|
+
--sn-stylekit-theme-type: dark;
|
|
58
|
+
--sn-stylekit-theme-name: Coffee;
|
|
59
|
+
|
|
60
|
+
--sn-stylekit-passive-color-0: var(--foreground-2);
|
|
61
|
+
--sn-stylekit-passive-color-1: var(--highlight);
|
|
62
|
+
|
|
63
|
+
--sn-stylekit-passive-color-3: var(--border-color);
|
|
64
|
+
--sn-stylekit-passive-color-4: var(--background-2);
|
|
65
|
+
|
|
66
|
+
--sn-stylekit-passive-color-4-opacity-variant: #5D473B;
|
|
67
|
+
--sn-stylekit-passive-color-5: var(--background-3);
|
|
68
|
+
|
|
69
|
+
--sn-stylekit-passive-color-super-light: var(--foreground-2);
|
|
70
|
+
|
|
71
|
+
--sn-stylekit-accessory-tint-color-1: var(--foreground-2);
|
|
72
|
+
--sn-stylekit-accessory-tint-color-2: var(--foreground-2);
|
|
73
|
+
--sn-stylekit-accessory-tint-color-3: var(--foreground-2);
|
|
74
|
+
--sn-stylekit-accessory-tint-color-4: var(--foreground-2);
|
|
75
|
+
--sn-stylekit-accessory-tint-color-5: var(--foreground-2);
|
|
76
|
+
--sn-stylekit-accessory-tint-color-6: var(--foreground-2);
|
|
77
|
+
|
|
78
|
+
--navigation-item-selected-background-color: var(--background-3);
|
|
79
|
+
}
|