@standardnotes/dark-mint-theme 1.0.0 → 1.0.3

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,14 @@
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
+ ## [1.0.3](https://github.com/standardnotes/plugins/compare/@standardnotes/dark-mint-theme@1.0.1...@standardnotes/dark-mint-theme@1.0.3) (2026-02-06)
7
+
8
+ **Note:** Version bump only for package @standardnotes/dark-mint-theme
9
+
10
+ ## [1.0.1](https://github.com/standardnotes/plugins/compare/@standardnotes/dark-mint-theme@1.0.2...@standardnotes/dark-mint-theme@1.0.1) (2026-01-20)
11
+
12
+ **Note:** Version bump only for package @standardnotes/dark-mint-theme
13
+
6
14
  ## 1.0.2 (2026-01-19)
7
15
 
8
16
  **Note:** Version bump only for package @standardnotes/dark-mint-theme
package/LICENSE.md ADDED
File without changes
@@ -0,0 +1,8 @@
1
+ {
2
+ "identifier": "com.sncommunity.dark-mint-theme",,
3
+ "name": "Dark Mint",
4
+ "content_type": "SN|Theme",
5
+ "area": "themes",
6
+ "version": "1.0.0",
7
+ "url": "theme.css"
8
+ }
package/dist/theme.css ADDED
@@ -0,0 +1,81 @@
1
+ :root {
2
+ --c-bg-deep: #0f1b24;
3
+ --c-bg-sidebar: #152532;
4
+ --c-bg-active: #1a2d3c;
5
+
6
+ --c-mint-bright: #a4f4a1;
7
+ --c-mint-muted: #7fc194;
8
+ --c-mint-dim: #5a8e87;
9
+ --c-border: #1f3649;
10
+
11
+ --c-danger: #ff4c4c;
12
+ --c-warning: #199191;
13
+
14
+ --sn-stylekit-theme-type: dark;
15
+ --sn-stylekit-theme-name: dark-mint-refined;
16
+
17
+ --sn-stylekit-background-color: var(--c-bg-deep);
18
+ --sn-stylekit-foreground-color: var(--c-mint-bright);
19
+ --sn-stylekit-border-color: var(--c-border);
20
+ --sn-stylekit-shadow-color: var(--c-border);
21
+
22
+ --sn-stylekit-contrast-background-color: var(--c-bg-active);
23
+ --sn-stylekit-contrast-foreground-color: var(--c-mint-bright);
24
+ --sn-stylekit-contrast-border-color: var(--c-border);
25
+
26
+ --sn-stylekit-secondary-background-color: var(--c-bg-sidebar);
27
+ --sn-stylekit-secondary-foreground-color: var(--c-mint-bright);
28
+ --sn-stylekit-secondary-border-color: var(--c-border);
29
+
30
+ --navigation-item-selected-background-color: var(--c-bg-active);
31
+
32
+ --sn-stylekit-editor-background-color: var(--c-bg-deep);
33
+ --sn-stylekit-editor-foreground-color: var(--c-mint-bright);
34
+ --sn-stylekit-paragraph-text-color: var(--c-mint-muted);
35
+
36
+ --sn-stylekit-neutral-color: var(--c-mint-muted);
37
+ --sn-stylekit-neutral-contrast-color: white;
38
+
39
+ --sn-stylekit-info-color: var(--c-mint-muted);
40
+ --sn-stylekit-info-contrast-color: black;
41
+ --sn-stylekit-info-backdrop-color: var(--c-bg-deep);
42
+
43
+ --sn-stylekit-success-color: var(--c-mint-muted);
44
+ --sn-stylekit-success-contrast-color: black;
45
+
46
+ --sn-stylekit-warning-color: var(--c-warning);
47
+ --sn-stylekit-warning-contrast-color: black;
48
+
49
+ --sn-stylekit-danger-color: var(--c-danger);
50
+ --sn-stylekit-danger-contrast-color: white;
51
+
52
+ --sn-stylekit-input-placeholder-color: var(--c-mint-dim);
53
+ --sn-stylekit-input-border-color: var(--c-mint-dim);
54
+
55
+ --sn-stylekit-scrollbar-thumb-color: var(--c-mint-dim);
56
+ --sn-stylekit-scrollbar-track-border-color: transparent;
57
+
58
+ --sn-stylekit-passive-color-0: var(--c-mint-muted);
59
+ --sn-stylekit-passive-color-1: var(--c-mint-muted);
60
+ --sn-stylekit-passive-color-3: var(--c-border);
61
+
62
+ --sn-stylekit-passive-color-4: var(--c-bg-active);
63
+
64
+ --sn-stylekit-passive-color-4-opacity-variant: rgba(127, 193, 148, 0.25);
65
+
66
+ --sn-stylekit-passive-color-5: var(--c-bg-deep);
67
+ }
68
+
69
+ #blocks-editor hr:after {
70
+ background-color: var(--c-mint-dim);
71
+ }
72
+
73
+ ::-webkit-scrollbar {
74
+ width: 8px;
75
+ height: 8px;
76
+ background-color: transparent;
77
+ }
78
+ ::-webkit-scrollbar-thumb {
79
+ background-color: var(--c-mint-dim);
80
+ border-radius: 4px;
81
+ }
package/package.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "name": "@standardnotes/dark-mint-theme",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/standardnotes/plugins",
7
+ "directory": "packages/com.sncommunity.dark-mint-theme"
8
+ },
4
9
  "description": "A dark mint theme for Standard Notes.",
5
10
  "author": "Passkeys",
6
11
  "license": "GPL-3.0",
@@ -17,5 +22,6 @@
17
22
  },
18
23
  "devDependencies": {
19
24
  "shx": "^0.4.0"
20
- }
25
+ },
26
+ "gitHead": "89d47ec07c98afc3af279aa3317f0dc9c24cd379"
21
27
  }