@standardnotes/dark-mint-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 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/dark-mint-theme
9
+
10
+ ## 1.0.1 (2026-01-19)
11
+
12
+ **Note:** Version bump only for package com.sncommunity.dark-mint-theme
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@standardnotes/dark-mint-theme",
3
+ "version": "1.0.2",
4
+ "description": "A dark mint theme for Standard Notes.",
5
+ "author": "Passkeys",
6
+ "license": "GPL-3.0",
7
+ "main": "dist/theme.css",
8
+ "sn": {
9
+ "name": "Dark Mint 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,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/src/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
+ }