snake-oil 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 +7 -0
- data/README.md +31 -0
- data/_config.yml +5 -0
- data/_includes/head.html +6 -0
- data/_layouts/default.html +6 -0
- data/_sass/base.scss +50 -0
- data/assets/snake-oil.scss +4 -0
- metadata +77 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 5eecee85187ecdc2478b4ce001949dd37f9f0e8fd8a72c7cdf50faf8bc2a1f37
|
|
4
|
+
data.tar.gz: 6917b633acaf25e2d89f83f9036e057dcc3634ee7e3c7db141feacbc2109d43c
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: de82297d997685cb4f3eec31c54e2cd8425c98385590bb301ee2bd45bd1272bef9b8e9879370e01f0c80c563ac49ce581f21e5564ba218d074ea6026b5763086
|
|
7
|
+
data.tar.gz: a9b5ebf069f30ca7af27bb3eab67c6840ac6f379bbab2cef7b654fc210da4171b63c202a572e7506b8fb5ffd888154d0a343b66c1fe4541d02f44109a3c9486a
|
data/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# snake oil
|
|
2
|
+
*earthy [Jekyll](https://jekyllrb.com) theme with the gritty snake oils salesman of the wild west in mind*
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
built for hack club's [tonic](https://tonic.hackclub.com) event
|
|
6
|
+
|
|
7
|
+
i've always wanted a nice earthy theme for my personal website, so i figured i'd give it a go. this theme blends warm, neutral greens and browns to evoke a romantic/rustic image of the rough outdoors while maintaing a calming, natural look.
|
|
8
|
+
|
|
9
|
+
usage:
|
|
10
|
+
run `gem install jekyll` then `jekyll serve` to see a preview of this template
|
|
11
|
+
|
|
12
|
+
## color palette:
|
|
13
|
+
|
|
14
|
+
for the most part, the colors are named after snakes...because the snake theme...
|
|
15
|
+
```scss
|
|
16
|
+
$stiletto: #040c06;
|
|
17
|
+
$mamba: #112318;
|
|
18
|
+
$cobra: #1e3a29;
|
|
19
|
+
$python: #305d42;
|
|
20
|
+
$green-anaconda: #4d8061;
|
|
21
|
+
$matcha: #89a257;
|
|
22
|
+
$vine: #bedc7f;
|
|
23
|
+
$cream: #eeffcc;
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# Usage
|
|
29
|
+
1. At the top of this page, select **Use this template** > **Create a new repository** to clone the template to your account.
|
|
30
|
+
2. Create a codespace from the created repository (for beginners) or use `git clone` (for advanced users) to start pushing commits.
|
|
31
|
+
3. Run `gem install jekyll`, then `jekyll serve` to see the template in action.
|
data/_config.yml
ADDED
data/_includes/head.html
ADDED
data/_sass/base.scss
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Primary color scheming yoinked from https://lospec.com/palette-list/ammo-8
|
|
3
|
+
|
|
4
|
+
*/
|
|
5
|
+
$stiletto: #040c06;
|
|
6
|
+
$mamba: #112318;
|
|
7
|
+
$cobra: #1e3a29;
|
|
8
|
+
$python: #305d42;
|
|
9
|
+
$green-anaconda: #4d8061;
|
|
10
|
+
$matcha: #89a257;
|
|
11
|
+
$bush: #92d110;
|
|
12
|
+
$vine: #bedc7f;
|
|
13
|
+
$cream: #eeffcc;
|
|
14
|
+
|
|
15
|
+
$coffee: #582F0E;
|
|
16
|
+
$terracotta: #7F4F24;
|
|
17
|
+
$latte: #936639;
|
|
18
|
+
$beige: #A68A64;
|
|
19
|
+
$khaki: #B6AD90;
|
|
20
|
+
body {
|
|
21
|
+
background-color: $stiletto;
|
|
22
|
+
font-family: sans-serif;
|
|
23
|
+
margin: auto;
|
|
24
|
+
max-width: 70ch;
|
|
25
|
+
|
|
26
|
+
padding: 1rem;
|
|
27
|
+
}
|
|
28
|
+
h1 {
|
|
29
|
+
color: $vine;
|
|
30
|
+
}
|
|
31
|
+
h2 {
|
|
32
|
+
color: rgba($vine, 0.8)
|
|
33
|
+
}
|
|
34
|
+
p {
|
|
35
|
+
color: $khaki;
|
|
36
|
+
}
|
|
37
|
+
hr {
|
|
38
|
+
color: $terracotta;
|
|
39
|
+
background-color: $terracotta;
|
|
40
|
+
width: 50%;
|
|
41
|
+
height: 0.33rem;
|
|
42
|
+
border-radius: 16px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
a {
|
|
46
|
+
color: $matcha;
|
|
47
|
+
}
|
|
48
|
+
a:visited {
|
|
49
|
+
color: $green-anaconda;
|
|
50
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: snake-oil
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- computingsquid
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-11-10 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 3.9.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.9.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bundler
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description:
|
|
42
|
+
email:
|
|
43
|
+
- jay.is.coding@gmail.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- README.md
|
|
49
|
+
- _config.yml
|
|
50
|
+
- _includes/head.html
|
|
51
|
+
- _layouts/default.html
|
|
52
|
+
- _sass/base.scss
|
|
53
|
+
- assets/snake-oil.scss
|
|
54
|
+
homepage: https://github.com/ProbablyComputingSquid/snake-oil
|
|
55
|
+
licenses: []
|
|
56
|
+
metadata: {}
|
|
57
|
+
post_install_message:
|
|
58
|
+
rdoc_options: []
|
|
59
|
+
require_paths:
|
|
60
|
+
- lib
|
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - ">="
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: '0'
|
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
|
+
requirements:
|
|
68
|
+
- - ">="
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
version: '0'
|
|
71
|
+
requirements: []
|
|
72
|
+
rubygems_version: 3.3.5
|
|
73
|
+
signing_key:
|
|
74
|
+
specification_version: 4
|
|
75
|
+
summary: gritty jekyll theme that blends neutral greens with warm browns for an subtle
|
|
76
|
+
earthy look.
|
|
77
|
+
test_files: []
|