abyssos 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.
- abyssos-0.1.0/Cargo.toml +11 -0
- abyssos-0.1.0/LICENSE +21 -0
- abyssos-0.1.0/PKG-INFO +99 -0
- abyssos-0.1.0/README.md +82 -0
- abyssos-0.1.0/abyssos/__init__.py +40 -0
- abyssos-0.1.0/pyproject.toml +23 -0
- abyssos-0.1.0/src/lib.rs +61 -0
- abyssos-0.1.0/themes/abyssos +26 -0
- abyssos-0.1.0/themes/abyssos.js +29 -0
abyssos-0.1.0/Cargo.toml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "abyssos"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
edition = "2021"
|
|
5
|
+
description = "Abyssos terminal colour theme — very dark navy/charcoal with teal/cyan hero accent"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
repository = "https://github.com/terry-li-hm/abyssos"
|
|
8
|
+
homepage = "https://github.com/terry-li-hm/abyssos"
|
|
9
|
+
keywords = ["terminal", "theme", "colour", "ghostty", "blink"]
|
|
10
|
+
categories = ["command-line-interface"]
|
|
11
|
+
readme = "README.md"
|
abyssos-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Terry Li
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
abyssos-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: abyssos
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Abyssos terminal colour theme — very dark navy/charcoal with teal/cyan hero accent
|
|
5
|
+
Project-URL: Homepage, https://github.com/terry-li-hm/abyssos
|
|
6
|
+
Project-URL: Repository, https://github.com/terry-li-hm/abyssos
|
|
7
|
+
License: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: blink,colour,ghostty,terminal,theme
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Topic :: Terminals
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Abyssos
|
|
19
|
+
|
|
20
|
+
> *Greek: bottomless depth* — a very dark navy/charcoal terminal theme with a teal/cyan hero accent.
|
|
21
|
+
|
|
22
|
+
Inspired by the Perplexity aesthetic. Named via a 6-model consilium (5/6 converged).
|
|
23
|
+
|
|
24
|
+
## Palette
|
|
25
|
+
|
|
26
|
+
| Role | Hex |
|
|
27
|
+
|------|-----|
|
|
28
|
+
| Background | `#0D0F10` |
|
|
29
|
+
| Foreground | `#E2E4E6` |
|
|
30
|
+
| Cursor | `#20C5C0` |
|
|
31
|
+
| Selection bg | `#1A3535` |
|
|
32
|
+
| Selection fg | `#E2E4E6` |
|
|
33
|
+
| 0 black | `#1A1C1E` |
|
|
34
|
+
| 1 red | `#E06B6B` |
|
|
35
|
+
| 2 green | `#1CB8A8` |
|
|
36
|
+
| 3 yellow | `#D4A85A` |
|
|
37
|
+
| 4 blue | `#5B8DD9` |
|
|
38
|
+
| 5 magenta | `#9B7FD4` |
|
|
39
|
+
| 6 cyan (hero) | `#20C5C0` |
|
|
40
|
+
| 7 white | `#C8CACC` |
|
|
41
|
+
| 8 bright black | `#2A2C2E` |
|
|
42
|
+
| 9 bright red | `#EA7B7B` |
|
|
43
|
+
| 10 bright green | `#2CC8B8` |
|
|
44
|
+
| 11 bright yellow | `#E4B86A` |
|
|
45
|
+
| 12 bright blue | `#6B9DE9` |
|
|
46
|
+
| 13 bright magenta | `#AB8FE4` |
|
|
47
|
+
| 14 bright cyan | `#30D5D0` |
|
|
48
|
+
| 15 bright white | `#D8DADC` |
|
|
49
|
+
|
|
50
|
+
## Installation
|
|
51
|
+
|
|
52
|
+
### Ghostty
|
|
53
|
+
|
|
54
|
+
```sh
|
|
55
|
+
cp themes/abyssos ~/.config/ghostty/themes/abyssos
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Then add to `~/.config/ghostty/config`:
|
|
59
|
+
|
|
60
|
+
```ini
|
|
61
|
+
theme = abyssos
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Verify: `ghostty +list-themes | grep -i abyssos`
|
|
65
|
+
|
|
66
|
+
### Blink Shell
|
|
67
|
+
|
|
68
|
+
In Blink: **Settings → Appearance → New Theme**, paste the raw URL:
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
https://raw.githubusercontent.com/terry-li-hm/abyssos/main/themes/abyssos.js
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Python
|
|
75
|
+
|
|
76
|
+
```sh
|
|
77
|
+
pip install abyssos
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
```python
|
|
81
|
+
import abyssos
|
|
82
|
+
print(abyssos.PALETTE["cyan"]) # '#20C5C0'
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Rust
|
|
86
|
+
|
|
87
|
+
```toml
|
|
88
|
+
[dependencies]
|
|
89
|
+
abyssos = "0.1"
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
```rust
|
|
93
|
+
use abyssos::CYAN;
|
|
94
|
+
println!("{}", CYAN); // "#20C5C0"
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## License
|
|
98
|
+
|
|
99
|
+
MIT
|
abyssos-0.1.0/README.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Abyssos
|
|
2
|
+
|
|
3
|
+
> *Greek: bottomless depth* — a very dark navy/charcoal terminal theme with a teal/cyan hero accent.
|
|
4
|
+
|
|
5
|
+
Inspired by the Perplexity aesthetic. Named via a 6-model consilium (5/6 converged).
|
|
6
|
+
|
|
7
|
+
## Palette
|
|
8
|
+
|
|
9
|
+
| Role | Hex |
|
|
10
|
+
|------|-----|
|
|
11
|
+
| Background | `#0D0F10` |
|
|
12
|
+
| Foreground | `#E2E4E6` |
|
|
13
|
+
| Cursor | `#20C5C0` |
|
|
14
|
+
| Selection bg | `#1A3535` |
|
|
15
|
+
| Selection fg | `#E2E4E6` |
|
|
16
|
+
| 0 black | `#1A1C1E` |
|
|
17
|
+
| 1 red | `#E06B6B` |
|
|
18
|
+
| 2 green | `#1CB8A8` |
|
|
19
|
+
| 3 yellow | `#D4A85A` |
|
|
20
|
+
| 4 blue | `#5B8DD9` |
|
|
21
|
+
| 5 magenta | `#9B7FD4` |
|
|
22
|
+
| 6 cyan (hero) | `#20C5C0` |
|
|
23
|
+
| 7 white | `#C8CACC` |
|
|
24
|
+
| 8 bright black | `#2A2C2E` |
|
|
25
|
+
| 9 bright red | `#EA7B7B` |
|
|
26
|
+
| 10 bright green | `#2CC8B8` |
|
|
27
|
+
| 11 bright yellow | `#E4B86A` |
|
|
28
|
+
| 12 bright blue | `#6B9DE9` |
|
|
29
|
+
| 13 bright magenta | `#AB8FE4` |
|
|
30
|
+
| 14 bright cyan | `#30D5D0` |
|
|
31
|
+
| 15 bright white | `#D8DADC` |
|
|
32
|
+
|
|
33
|
+
## Installation
|
|
34
|
+
|
|
35
|
+
### Ghostty
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
cp themes/abyssos ~/.config/ghostty/themes/abyssos
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then add to `~/.config/ghostty/config`:
|
|
42
|
+
|
|
43
|
+
```ini
|
|
44
|
+
theme = abyssos
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Verify: `ghostty +list-themes | grep -i abyssos`
|
|
48
|
+
|
|
49
|
+
### Blink Shell
|
|
50
|
+
|
|
51
|
+
In Blink: **Settings → Appearance → New Theme**, paste the raw URL:
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
https://raw.githubusercontent.com/terry-li-hm/abyssos/main/themes/abyssos.js
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Python
|
|
58
|
+
|
|
59
|
+
```sh
|
|
60
|
+
pip install abyssos
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
```python
|
|
64
|
+
import abyssos
|
|
65
|
+
print(abyssos.PALETTE["cyan"]) # '#20C5C0'
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Rust
|
|
69
|
+
|
|
70
|
+
```toml
|
|
71
|
+
[dependencies]
|
|
72
|
+
abyssos = "0.1"
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
```rust
|
|
76
|
+
use abyssos::CYAN;
|
|
77
|
+
println!("{}", CYAN); // "#20C5C0"
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
MIT
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Abyssos — terminal colour theme.
|
|
3
|
+
|
|
4
|
+
Very dark navy/charcoal background, teal/cyan hero accent.
|
|
5
|
+
Supports Ghostty and Blink Shell.
|
|
6
|
+
|
|
7
|
+
Usage::
|
|
8
|
+
|
|
9
|
+
import abyssos
|
|
10
|
+
print(abyssos.PALETTE["cyan"]) # '#20C5C0'
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
PALETTE = {
|
|
14
|
+
"background": "#0D0F10",
|
|
15
|
+
"foreground": "#E2E4E6",
|
|
16
|
+
"cursor": "#20C5C0",
|
|
17
|
+
"selection_bg": "#1A3535",
|
|
18
|
+
"selection_fg": "#E2E4E6",
|
|
19
|
+
# Normal
|
|
20
|
+
"black": "#1A1C1E",
|
|
21
|
+
"red": "#E06B6B",
|
|
22
|
+
"green": "#1CB8A8",
|
|
23
|
+
"yellow": "#D4A85A",
|
|
24
|
+
"blue": "#5B8DD9",
|
|
25
|
+
"magenta": "#9B7FD4",
|
|
26
|
+
"cyan": "#20C5C0",
|
|
27
|
+
"white": "#C8CACC",
|
|
28
|
+
# Bright
|
|
29
|
+
"bright_black": "#2A2C2E",
|
|
30
|
+
"bright_red": "#EA7B7B",
|
|
31
|
+
"bright_green": "#2CC8B8",
|
|
32
|
+
"bright_yellow": "#E4B86A",
|
|
33
|
+
"bright_blue": "#6B9DE9",
|
|
34
|
+
"bright_magenta": "#AB8FE4",
|
|
35
|
+
"bright_cyan": "#30D5D0",
|
|
36
|
+
"bright_white": "#D8DADC",
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
__version__ = "0.1.0"
|
|
40
|
+
__all__ = ["PALETTE"]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "abyssos"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Abyssos terminal colour theme — very dark navy/charcoal with teal/cyan hero accent"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
keywords = ["terminal", "theme", "colour", "ghostty", "blink"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Topic :: Terminals",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/terry-li-hm/abyssos"
|
|
23
|
+
Repository = "https://github.com/terry-li-hm/abyssos"
|
abyssos-0.1.0/src/lib.rs
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
//! Abyssos terminal colour theme.
|
|
2
|
+
//!
|
|
3
|
+
//! Very dark navy/charcoal background, teal/cyan hero accent.
|
|
4
|
+
//! Supports Ghostty and Blink Shell.
|
|
5
|
+
//!
|
|
6
|
+
//! # Palette
|
|
7
|
+
//!
|
|
8
|
+
//! ```rust
|
|
9
|
+
//! use abyssos::CYAN;
|
|
10
|
+
//! assert_eq!(CYAN, "#20C5C0");
|
|
11
|
+
//! ```
|
|
12
|
+
|
|
13
|
+
pub const BACKGROUND: &str = "#0D0F10";
|
|
14
|
+
pub const FOREGROUND: &str = "#E2E4E6";
|
|
15
|
+
pub const CURSOR: &str = "#20C5C0";
|
|
16
|
+
pub const SELECTION_BG: &str = "#1A3535";
|
|
17
|
+
pub const SELECTION_FG: &str = "#E2E4E6";
|
|
18
|
+
|
|
19
|
+
// Normal colours
|
|
20
|
+
pub const BLACK: &str = "#1A1C1E";
|
|
21
|
+
pub const RED: &str = "#E06B6B";
|
|
22
|
+
pub const GREEN: &str = "#1CB8A8";
|
|
23
|
+
pub const YELLOW: &str = "#D4A85A";
|
|
24
|
+
pub const BLUE: &str = "#5B8DD9";
|
|
25
|
+
pub const MAGENTA: &str = "#9B7FD4";
|
|
26
|
+
pub const CYAN: &str = "#20C5C0";
|
|
27
|
+
pub const WHITE: &str = "#C8CACC";
|
|
28
|
+
|
|
29
|
+
// Bright colours
|
|
30
|
+
pub const BRIGHT_BLACK: &str = "#2A2C2E";
|
|
31
|
+
pub const BRIGHT_RED: &str = "#EA7B7B";
|
|
32
|
+
pub const BRIGHT_GREEN: &str = "#2CC8B8";
|
|
33
|
+
pub const BRIGHT_YELLOW: &str = "#E4B86A";
|
|
34
|
+
pub const BRIGHT_BLUE: &str = "#6B9DE9";
|
|
35
|
+
pub const BRIGHT_MAGENTA: &str = "#AB8FE4";
|
|
36
|
+
pub const BRIGHT_CYAN: &str = "#30D5D0";
|
|
37
|
+
pub const BRIGHT_WHITE: &str = "#D8DADC";
|
|
38
|
+
|
|
39
|
+
/// Full 16-colour palette in ANSI order (0–15).
|
|
40
|
+
pub const PALETTE: [&str; 16] = [
|
|
41
|
+
BLACK, RED, GREEN, YELLOW,
|
|
42
|
+
BLUE, MAGENTA, CYAN, WHITE,
|
|
43
|
+
BRIGHT_BLACK, BRIGHT_RED, BRIGHT_GREEN, BRIGHT_YELLOW,
|
|
44
|
+
BRIGHT_BLUE, BRIGHT_MAGENTA, BRIGHT_CYAN, BRIGHT_WHITE,
|
|
45
|
+
];
|
|
46
|
+
|
|
47
|
+
#[cfg(test)]
|
|
48
|
+
mod tests {
|
|
49
|
+
use super::*;
|
|
50
|
+
|
|
51
|
+
#[test]
|
|
52
|
+
fn hero_accent_is_teal() {
|
|
53
|
+
assert_eq!(CYAN, "#20C5C0");
|
|
54
|
+
assert_eq!(CURSOR, CYAN);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
#[test]
|
|
58
|
+
fn palette_has_sixteen_entries() {
|
|
59
|
+
assert_eq!(PALETTE.len(), 16);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Abyssos — terminal colour theme
|
|
2
|
+
# Very dark navy/charcoal background, teal/cyan hero accent.
|
|
3
|
+
# https://github.com/terry-li-hm/abyssos
|
|
4
|
+
|
|
5
|
+
background = #0D0F10
|
|
6
|
+
foreground = #E2E4E6
|
|
7
|
+
cursor-color = #20C5C0
|
|
8
|
+
selection-background = #1A3535
|
|
9
|
+
selection-foreground = #E2E4E6
|
|
10
|
+
|
|
11
|
+
palette = 0=#1A1C1E
|
|
12
|
+
palette = 1=#E06B6B
|
|
13
|
+
palette = 2=#1CB8A8
|
|
14
|
+
palette = 3=#D4A85A
|
|
15
|
+
palette = 4=#5B8DD9
|
|
16
|
+
palette = 5=#9B7FD4
|
|
17
|
+
palette = 6=#20C5C0
|
|
18
|
+
palette = 7=#C8CACC
|
|
19
|
+
palette = 8=#2A2C2E
|
|
20
|
+
palette = 9=#EA7B7B
|
|
21
|
+
palette = 10=#2CC8B8
|
|
22
|
+
palette = 11=#E4B86A
|
|
23
|
+
palette = 12=#6B9DE9
|
|
24
|
+
palette = 13=#AB8FE4
|
|
25
|
+
palette = 14=#30D5D0
|
|
26
|
+
palette = 15=#D8DADC
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// Abyssos — terminal colour theme for Blink Shell
|
|
2
|
+
// Very dark navy/charcoal background, teal/cyan hero accent.
|
|
3
|
+
// Install: Blink Settings → Appearance → New Theme → paste raw GitHub URL
|
|
4
|
+
// https://github.com/terry-li-hm/abyssos
|
|
5
|
+
|
|
6
|
+
(function(t) {
|
|
7
|
+
t.prefs_.set('background-color', '#0D0F10');
|
|
8
|
+
t.prefs_.set('foreground-color', '#E2E4E6');
|
|
9
|
+
t.prefs_.set('cursor-color', '#20C5C0');
|
|
10
|
+
|
|
11
|
+
t.prefs_.set('color-palette-overrides', [
|
|
12
|
+
'#1A1C1E', // 0 black
|
|
13
|
+
'#E06B6B', // 1 red
|
|
14
|
+
'#1CB8A8', // 2 green
|
|
15
|
+
'#D4A85A', // 3 yellow
|
|
16
|
+
'#5B8DD9', // 4 blue
|
|
17
|
+
'#9B7FD4', // 5 magenta
|
|
18
|
+
'#20C5C0', // 6 cyan (hero)
|
|
19
|
+
'#C8CACC', // 7 white
|
|
20
|
+
'#2A2C2E', // 8 bright black
|
|
21
|
+
'#EA7B7B', // 9 bright red
|
|
22
|
+
'#2CC8B8', // 10 bright green
|
|
23
|
+
'#E4B86A', // 11 bright yellow
|
|
24
|
+
'#6B9DE9', // 12 bright blue
|
|
25
|
+
'#AB8FE4', // 13 bright magenta
|
|
26
|
+
'#30D5D0', // 14 bright cyan
|
|
27
|
+
'#D8DADC', // 15 bright white
|
|
28
|
+
]);
|
|
29
|
+
})(term_);
|