excalidraw-skill-pack-theme-dark 0.1.0__tar.gz
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.
- excalidraw_skill_pack_theme_dark-0.1.0/.gitignore +21 -0
- excalidraw_skill_pack_theme_dark-0.1.0/CHANGELOG.md +13 -0
- excalidraw_skill_pack_theme_dark-0.1.0/PKG-INFO +48 -0
- excalidraw_skill_pack_theme_dark-0.1.0/README.md +29 -0
- excalidraw_skill_pack_theme_dark-0.1.0/elements/box.json +9 -0
- excalidraw_skill_pack_theme_dark-0.1.0/layouts/.gitkeep +0 -0
- excalidraw_skill_pack_theme_dark-0.1.0/package.json +41 -0
- excalidraw_skill_pack_theme_dark-0.1.0/palette.json +11 -0
- excalidraw_skill_pack_theme_dark-0.1.0/palette.md +21 -0
- excalidraw_skill_pack_theme_dark-0.1.0/pyproject.toml +37 -0
- excalidraw_skill_pack_theme_dark-0.1.0/src/excalidraw_skill_pack_theme_dark/__init__.py +10 -0
- excalidraw_skill_pack_theme_dark-0.1.0/theme.json +20 -0
- excalidraw_skill_pack_theme_dark-0.1.0/typography.json +11 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
node_modules/
|
|
2
|
+
dist/
|
|
3
|
+
.turbo/
|
|
4
|
+
.next/
|
|
5
|
+
*.log
|
|
6
|
+
.DS_Store
|
|
7
|
+
.env
|
|
8
|
+
.env.local
|
|
9
|
+
__pycache__/
|
|
10
|
+
*.pyc
|
|
11
|
+
.venv/
|
|
12
|
+
.pytest_cache/
|
|
13
|
+
.ruff_cache/
|
|
14
|
+
.mypy_cache/
|
|
15
|
+
htmlcov/
|
|
16
|
+
.coverage
|
|
17
|
+
*.egg-info/
|
|
18
|
+
build/
|
|
19
|
+
playwright-report/
|
|
20
|
+
test-results/
|
|
21
|
+
.uv/
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @excalidraw-skill-pack/theme-dark
|
|
2
|
+
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5186be0: chore: add discoverability metadata (keywords, repository, homepage, bugs, author) to all published packages so they surface in npm search and link back to the repo/docs.
|
|
8
|
+
|
|
9
|
+
## 0.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 5f01c19: Initial release of 4 themes (stripe-press, notion, whiteboard, dark) and the create-excalidraw-theme scaffolder.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: excalidraw-skill-pack-theme-dark
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Inverted contrast, neutral. For presentations and dev tools.
|
|
5
|
+
Project-URL: Homepage, https://excalidraw-skill-pack.vercel.app/themes
|
|
6
|
+
Project-URL: Repository, https://github.com/isatimur/excalidraw-skill-pack
|
|
7
|
+
Project-URL: Documentation, https://excalidraw-skill-pack.vercel.app
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/isatimur/excalidraw-skill-pack/issues
|
|
9
|
+
Author: Timur Isachenko
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
Keywords: ai-agent,branding,dark,diagrams,excalidraw,excalidraw-skill-pack,theme,visualization
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# @excalidraw-skill-pack/theme-dark
|
|
21
|
+
|
|
22
|
+
> Inverted contrast, neutral. For presentations and dev tools.
|
|
23
|
+
|
|
24
|
+
Theme package for [excalidraw-skill-pack](https://excalidraw-skill-pack.vercel.app).
|
|
25
|
+
|
|
26
|
+
## Install
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npm i -g @excalidraw-skill-pack/theme-dark
|
|
30
|
+
# or
|
|
31
|
+
pip install excalidraw-skill-pack-theme-dark
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Use
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx @excalidraw-skill-pack/render diagram.excalidraw --theme dark
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Or set in `.excalidraw-skill-pack.json`:
|
|
41
|
+
|
|
42
|
+
```json
|
|
43
|
+
{ "theme": "dark" }
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Author
|
|
47
|
+
|
|
48
|
+
Timur Isachenko · MIT
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @excalidraw-skill-pack/theme-dark
|
|
2
|
+
|
|
3
|
+
> Inverted contrast, neutral. For presentations and dev tools.
|
|
4
|
+
|
|
5
|
+
Theme package for [excalidraw-skill-pack](https://excalidraw-skill-pack.vercel.app).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i -g @excalidraw-skill-pack/theme-dark
|
|
11
|
+
# or
|
|
12
|
+
pip install excalidraw-skill-pack-theme-dark
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Use
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx @excalidraw-skill-pack/render diagram.excalidraw --theme dark
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Or set in `.excalidraw-skill-pack.json`:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{ "theme": "dark" }
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Author
|
|
28
|
+
|
|
29
|
+
Timur Isachenko · MIT
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@excalidraw-skill-pack/theme-dark",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Inverted contrast, neutral. For presentations and dev tools.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Timur Isachenko",
|
|
7
|
+
"homepage": "https://excalidraw-skill-pack.vercel.app/themes",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/isatimur/excalidraw-skill-pack.git",
|
|
11
|
+
"directory": "packages/themes/dark"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/isatimur/excalidraw-skill-pack/issues"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"main": "./theme.json",
|
|
18
|
+
"files": [
|
|
19
|
+
"theme.json",
|
|
20
|
+
"palette.json",
|
|
21
|
+
"palette.md",
|
|
22
|
+
"typography.json",
|
|
23
|
+
"elements/",
|
|
24
|
+
"layouts/",
|
|
25
|
+
"preview.png",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [
|
|
29
|
+
"excalidraw",
|
|
30
|
+
"excalidraw-skill-pack",
|
|
31
|
+
"theme",
|
|
32
|
+
"ai-agent",
|
|
33
|
+
"diagrams",
|
|
34
|
+
"visualization",
|
|
35
|
+
"branding",
|
|
36
|
+
"dark"
|
|
37
|
+
],
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# dark palette
|
|
2
|
+
|
|
3
|
+
> Dark background, light strokes, green accent — dev tool aesthetic.
|
|
4
|
+
|
|
5
|
+
| Role | Hex | Use for |
|
|
6
|
+
|---|---|---|
|
|
7
|
+
| `ink` | `#E7E5E4` | All strokes and body text. Light warm-gray on dark ground. |
|
|
8
|
+
| `paper` | `#18181B` | The background. Near-black zinc — neutral, not blue or warm. |
|
|
9
|
+
| `accent` | `#22C55E` | Primary emphasis. Terminal green — the signal you want seen. |
|
|
10
|
+
| `accent_alt` | `#F472B6` | Secondary accent — pink, for contrast against green. Use only in binary comparisons. |
|
|
11
|
+
| `evidence_bg` | `#0A0A0A` | Evidence block background — darker than paper, creates depth for code/JSON. |
|
|
12
|
+
| `evidence_text` | `#E7E5E4` | Text inside evidence blocks. Same warm-gray as `ink`. |
|
|
13
|
+
| `muted` | `#71717A` | Subdued labels, grid lines, minor annotations. |
|
|
14
|
+
|
|
15
|
+
## Editorial rules
|
|
16
|
+
|
|
17
|
+
- The contrast is inverted from all other themes — `paper` is dark, `ink` is light. Do not mix elements.
|
|
18
|
+
- `accent` is terminal-green: use it for outcomes, approvals, the "yes" signal.
|
|
19
|
+
- `accent_alt` (pink) is rare — only for true binary contrast (e.g., pass/fail, before/after split).
|
|
20
|
+
- Evidence blocks are deeper-black than the paper — this creates a layered, IDE-like depth.
|
|
21
|
+
- Typography stays at default Virgil (fontFamily 1) — the sketchy strokes read well on dark ground.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "excalidraw-skill-pack-theme-dark"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Inverted contrast, neutral. For presentations and dev tools."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
requires-python = ">=3.11"
|
|
8
|
+
authors = [{ name = "Timur Isachenko" }]
|
|
9
|
+
keywords = ["excalidraw", "excalidraw-skill-pack", "theme", "ai-agent", "diagrams", "visualization", "branding", "dark"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 4 - Beta",
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"Programming Language :: Python :: 3.11",
|
|
14
|
+
"Programming Language :: Python :: 3.12",
|
|
15
|
+
"Topic :: Multimedia :: Graphics",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://excalidraw-skill-pack.vercel.app/themes"
|
|
20
|
+
Repository = "https://github.com/isatimur/excalidraw-skill-pack"
|
|
21
|
+
Documentation = "https://excalidraw-skill-pack.vercel.app"
|
|
22
|
+
"Bug Tracker" = "https://github.com/isatimur/excalidraw-skill-pack/issues"
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["hatchling"]
|
|
26
|
+
build-backend = "hatchling.build"
|
|
27
|
+
|
|
28
|
+
[tool.hatch.build.targets.wheel]
|
|
29
|
+
packages = ["src/excalidraw_skill_pack_theme_dark"]
|
|
30
|
+
|
|
31
|
+
[tool.hatch.build.targets.wheel.force-include]
|
|
32
|
+
"theme.json" = "excalidraw_skill_pack_theme_dark/theme.json"
|
|
33
|
+
"palette.json" = "excalidraw_skill_pack_theme_dark/palette.json"
|
|
34
|
+
"palette.md" = "excalidraw_skill_pack_theme_dark/palette.md"
|
|
35
|
+
"typography.json" = "excalidraw_skill_pack_theme_dark/typography.json"
|
|
36
|
+
"elements" = "excalidraw_skill_pack_theme_dark/elements"
|
|
37
|
+
"layouts" = "excalidraw_skill_pack_theme_dark/layouts"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""excalidraw-skill-pack-theme-dark: theme package.
|
|
2
|
+
|
|
3
|
+
This package ships the same files as the npm @excalidraw-skill-pack/theme-dark
|
|
4
|
+
package. The Python renderer discovers it via importlib.resources at runtime.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from importlib.resources import files
|
|
8
|
+
|
|
9
|
+
__version__ = "0.1.0"
|
|
10
|
+
THEME_DIR = files(__package__)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dark",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"extends": "default-sketchy",
|
|
5
|
+
"description": "Inverted contrast, neutral. For presentations and dev tools.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Timur Isachenko",
|
|
8
|
+
"preview": "preview.png",
|
|
9
|
+
"roles": {
|
|
10
|
+
"ink": "#E7E5E4",
|
|
11
|
+
"paper": "#18181B",
|
|
12
|
+
"accent": "#22C55E",
|
|
13
|
+
"accent_alt": "#F472B6",
|
|
14
|
+
"evidence_bg": "#0A0A0A",
|
|
15
|
+
"evidence_text": "#E7E5E4",
|
|
16
|
+
"muted": "#71717A",
|
|
17
|
+
"warning": "#F59E0B",
|
|
18
|
+
"danger": "#EF4444"
|
|
19
|
+
}
|
|
20
|
+
}
|