shadow-shell 0.1.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 397f39ceb125a829428dde0183a3d373762a8af93d285265ca67e1ec595ace9e
4
+ data.tar.gz: 781176f53392fe6c6de744662cf682c8cc2efff381f47e5f8b4b5c056f8f20e6
5
+ SHA512:
6
+ metadata.gz: f9ec66e1f8505e99ebc573c7c71bcabfe8b113d498dcc67d0f9e9ebe70ab9764be312198d13c3290aceb6f1f28598b833d6c68cc15302d291cf7b84af9f7de8a
7
+ data.tar.gz: e4a2a415b95b49ec348f5419bce5d690a8e4743b00d26d223c635dd01b22f39697a1bf4b50609bc0e2a6781df24546fa9b88defcd6ee7eede1f406cea2c53e65
data/404.md ADDED
@@ -0,0 +1,13 @@
1
+ ---
2
+ title: 404
3
+ layout: default
4
+ ---
5
+
6
+ <div class="four-oh-four">
7
+ <h1>//404 ERROR//</h1>
8
+ <p>webpage not found</p>
9
+ <p>you broke the internet</p>
10
+
11
+ <br><br><br><br><br><br><br><br><br><br>
12
+ <a href="{{ '/' | absolute_url }}">Bring me back ></a>
13
+ </div>
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 luteron6
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.
data/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # Shadow-Shell
2
+ **Shadow-Shell** is a dark, retro-coding theme for Jekyll. It’s intended to be used for code documentation, or for just having terminal or command line vibes.
3
+
4
+ <p align="center">
5
+ <img src="template.png" width="900">
6
+ </p>
7
+
8
+ ## Features
9
+
10
+ ### Menu
11
+ The menu on the left can be customized to contain any links.
12
+
13
+ ### Headers
14
+ Headers 1-3 are neon green like above. Headers 4 and smaller headers are white.
15
+
16
+
17
+ ### Code Blocks:
18
+ Code blocks have a light grey bubble around them. They use Rouge for syntax highlighting and look awesome. <br><br>
19
+ Here's some Python:
20
+
21
+ ```python
22
+ print("Hello, world!")
23
+ for i in range(10):
24
+ print(i)
25
+ ```
26
+ And here's some HTML:
27
+
28
+ ```html
29
+ <h1>Hello, world!</h1>
30
+ <p>This is lovely.</p>
31
+ ```
32
+ ### Links
33
+ Links are also neon green <a href="#links"> like this:</a>. They turn neon blue when hovered over or clicked.
34
+
35
+ ### Lists
36
+ #### Bulleted Lists
37
+ - These are bulleted lists.
38
+ - They look great.
39
+
40
+ - You can even nest them.
41
+ - Like this.
42
+ - Or this.
43
+
44
+ #### Numbered Lists
45
+ 1. These are numbered lists.
46
+ 2. They look great.
47
+ 3. You can even nest them.
48
+ 1. Like this.
49
+ 2. Or this.
50
+
51
+
52
+ ### Blockquotes
53
+ > "Never throughout history has a man who lived a life of ease left a name worth remembering."<br>~ Theodore Roosevelt
54
+
55
+ ## installation
56
+ #### GitHub Pages
57
+ if your site is hosted on GitHub Pages, you can add lifeblood to your site's `_config.yml` as a remote theme:
58
+
59
+ ```yml
60
+ remote_theme: luteron6/tonic-template
61
+ ```
62
+ #### Advanced
63
+ `git clone` this repo to have a local installation. Run `gem install jekyll`, then `jekyll serve` to see the template in action.
64
+
65
+ Made with ❤️ by a hackclubber for the YSWS [#tonic](tonic.hackclub.com)
data/_config.yml ADDED
@@ -0,0 +1,13 @@
1
+ title: shadow-shell
2
+ description: "A dark, retro-coding theme for Jekyll!"
3
+ encoding: utf-8
4
+ markdown: kramdown
5
+ kramdown:
6
+ input: GFM
7
+ syntax_highlighter: rouge
8
+
9
+ sass:
10
+ style: compressed
11
+
12
+ exclude: ["README.md", "LICENSE", "*.gem", "*.gemspec", "Gemfile.lock"]
13
+ footer: "(c) 2025 luteron6 &mdash; MIT license"
@@ -0,0 +1,13 @@
1
+ <head>
2
+ <!-- Reference Google Font-->
3
+ <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
4
+ <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?">
5
+
6
+ <!-- Sass sheet-->
7
+ <link rel="stylesheet" href="{{ '/assets/shadow-shell.css' | relative_url }}">
8
+ <title>{{ page.title }} | {{ site.title }}</title>
9
+
10
+ <meta charset="utf-8">
11
+ <meta name="viewport" content="width=device-width, initial-scale=1">
12
+ <br>
13
+ </head>
@@ -0,0 +1,10 @@
1
+ <nav>
2
+ <h1><br>Menu</h1>
3
+ <br><br>
4
+ <a href="/">Home</a><br><br>
5
+ <a href="/features">Features</a> <br><br>
6
+ <a href="/about">About</a>
7
+
8
+ <br><br>
9
+ <a href="https://github.com/luteron6/tonic-template">GitHub Source</a> <br><br>
10
+ </nav>
@@ -0,0 +1,16 @@
1
+ <html>
2
+ {% include head.html %}
3
+ {% include menu.html %}
4
+ <body>
5
+ {{ content }}
6
+ </body>
7
+
8
+ <hr>
9
+
10
+ <footer>
11
+ {{ site.footer }}
12
+ </footer>
13
+ </html>
14
+
15
+
16
+
data/_sass/base.scss ADDED
@@ -0,0 +1,59 @@
1
+ :root {
2
+ --dark-grey: #191919;
3
+ --light-grey: #686868;
4
+ --lighter-grey: #d5d5d5;
5
+ --white: #ffffff;
6
+ --neon-green: #adff2f;
7
+ --neon-blue: #00fcef;
8
+ }
9
+
10
+ body {
11
+ line-height: 1.8;
12
+ background-color: var(--dark-grey);
13
+ font-family: "JetBrains Mono", monospace;
14
+ margin: auto;
15
+ max-width: 70ch;
16
+ color: var(--white);
17
+ a:link {color: var(--neon-green); text-decoration:none;}
18
+ a:visited {color: var(--neon-blue)}
19
+ a:hover {color: var(--neon-blue); text-decoration: underline}
20
+ }
21
+ h1 {
22
+ color: var(--neon-green);
23
+ }
24
+
25
+ h2 {
26
+ color: var(--neon-green);
27
+ }
28
+
29
+ h3 {
30
+ color: var(--neon-green);
31
+ }
32
+
33
+ hr {
34
+ color: var(--light-grey);
35
+ height: 2px;
36
+ background-color: var(--light-grey);
37
+ border: none;
38
+ margin: 1rem 0;
39
+ }
40
+
41
+ footer {
42
+ font-size: x-small;
43
+ text-align: center;
44
+ margin-bottom: 20px;
45
+ }
46
+
47
+ nav{
48
+ line-height: 1.1;
49
+ position: fixed;
50
+ left: 0;
51
+ top: 0;
52
+ bottom: 0;
53
+ width: 250px;
54
+ padding: 20px;
55
+ padding-left: 2rem;
56
+ a:link {color: var(--neon-green)}
57
+ a:visited {color: var(--neon-green)}
58
+ a:hover {color: var(--neon-blue)}
59
+ }
@@ -0,0 +1,94 @@
1
+ /*.highlight table td { padding: 5px; }
2
+ .highlight table pre { margin: 0; }
3
+ .highlight, .highlight .w {
4
+ color: #d8d8d8;
5
+ background-color: #181818;
6
+ }
7
+ */
8
+ .highlight .err {
9
+ color: #181818;
10
+ background-color: #ab4642;
11
+ }
12
+ .highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
13
+ color: #585858;
14
+ }
15
+ .highlight .cp {
16
+ color: #f7ca88;
17
+ }
18
+ .highlight .nt {
19
+ color: #f7ca88;
20
+ }
21
+ .highlight .o, .highlight .ow {
22
+ color: #aeaeae;
23
+ }
24
+ .highlight .p, .highlight .pi {
25
+ color: #aeaeae;
26
+ }
27
+ .highlight .gi {
28
+ color: #a1b56c;
29
+ }
30
+ .highlight .gd {
31
+ color: #ab4642;
32
+ }
33
+ .highlight .gh {
34
+ color: #7cafc2;
35
+ background-color: #181818;
36
+ font-weight: bold;
37
+ }
38
+ .highlight .ge {
39
+ font-style: italic;
40
+ }
41
+ .highlight .ges {
42
+ font-weight: bold;
43
+ font-style: italic;
44
+ }
45
+ .highlight .gs {
46
+ font-weight: bold;
47
+ }
48
+ .highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
49
+ color: #fb55d4;
50
+ }
51
+ .highlight .kc {
52
+ color: #dc9656;
53
+ }
54
+ .highlight .kt {
55
+ color: #dc9656;
56
+ }
57
+ .highlight .kd {
58
+ color: #dc9656;
59
+ }
60
+ .highlight .s, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
61
+ color: #adff2f;
62
+ /*color: #a1b56c;*/
63
+ }
64
+ .highlight .sa {
65
+ color: #ba8baf;
66
+ }
67
+ .highlight .sr {
68
+ color: #86c1b9;
69
+ }
70
+ .highlight .si {
71
+ color: #a16946;
72
+ }
73
+ .highlight .se {
74
+ color: #a16946;
75
+ }
76
+ .highlight .nn {
77
+ color: #f7ca88;
78
+ }
79
+ .highlight .nc {
80
+ color: #f7ca88;
81
+ }
82
+ .highlight .no {
83
+ color: #f7ca88;
84
+ }
85
+ .highlight .na {
86
+ color: #7cafc2;
87
+ }
88
+ .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
89
+ color: #adff2f;
90
+ /*color: #a1b56c;*/
91
+ }
92
+ .highlight .ss {
93
+ color: #a1b56c;
94
+ }
@@ -0,0 +1,30 @@
1
+ blockquote {
2
+ font-style: italic;
3
+ color: var(--lighter-grey);
4
+ border-left: 2px solid var(--neon-green);
5
+ padding-left: 1rem;
6
+ margin: 1rem 0;
7
+ }
8
+
9
+ pre {
10
+ font-size: small;
11
+ white-space: pre-wrap;
12
+ background: var(--light-grey);
13
+ padding: 10px;
14
+ border: 2px solid var(--lighter-grey);
15
+ border-radius: 10px;
16
+ }
17
+
18
+ code {
19
+ font-family: "JetBrains Mono", monospace;
20
+ white-space: pre-wrap;
21
+ }
22
+ .four-oh-four {
23
+ display: flex;
24
+ line-height: 0.6;
25
+ flex-direction: column;
26
+ justify-content: center;
27
+ align-items: center;
28
+ text-align: center;
29
+ min-height: 88vh;
30
+ }
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+
4
+ @import "base.scss";
5
+ @import "elements.scss";
6
+ @import "base16.dark.syntax.scss";
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shadow-shell
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - luteron6
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-11-09 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: jekyll
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 3.9.0
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 3.9.0
26
+ - !ruby/object:Gem::Dependency
27
+ name: bundler
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ email:
41
+ - ''
42
+ executables: []
43
+ extensions: []
44
+ extra_rdoc_files: []
45
+ files:
46
+ - 404.md
47
+ - LICENSE
48
+ - README.md
49
+ - _config.yml
50
+ - _includes/head.html
51
+ - _includes/menu.html
52
+ - _layouts/default.html
53
+ - _sass/base.scss
54
+ - _sass/base16.dark.syntax.scss
55
+ - _sass/elements.scss
56
+ - assets/shadow-shell.scss
57
+ homepage: https://github.com/luteron6/shadow-shell
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubygems_version: 3.6.2
76
+ specification_version: 4
77
+ summary: Shadow-Shell is a dark, retro-coding theme for Jekyll. It’s intended to be
78
+ used for code documentation, or for just having terminal or command line vibes.
79
+ test_files: []