bluetonic 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: 9e7a817971627e733418b97b5130a652c327fa821b68f7548ef61400a63ff4ca
4
+ data.tar.gz: 0753e07ebc3c7aac66324ff0075cd93f243b52bf13ac2d37ccf7b8e4e1ee2c24
5
+ SHA512:
6
+ metadata.gz: 80fe8e73aeb316d22394e61cf7670652ed293ce8308d671ceab88967e568888580a99f776d2803a3f6e5f0eefe6661474e077e6d579bac6a789f6be785a034e1
7
+ data.tar.gz: 555650c72d0110300d70e22ae73cd32679a1203819d1596824b4296d4eea54e4b43bad963f77971b3c692a156e6d1f8c5455acfb76c1a2145c9d28b36a069b66
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 SuperYoshi10000
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,12 @@
1
+ # Blue
2
+ ![GitHub branch status](https://img.shields.io/github/checks-status/SuperYoshi10000/BlueTonic/main)
3
+ ![GitHub License](https://img.shields.io/github/license/SuperYoshi10000/bluetonic)
4
+
5
+
6
+
7
+ This theme is a blue theme for Jekyll.
8
+
9
+ Everything is some shade of blue.
10
+
11
+ ## Usage
12
+ You can find it at [a](https://example.com).
data/_config.yml ADDED
@@ -0,0 +1,5 @@
1
+ title: Blue
2
+ description: "Blue Jekyll theme"
3
+ encoding: utf-8
4
+
5
+ exclude: ["README.md", "LICENSE", "*.gem", "*.gemspec", "Gemfile.lock"]
@@ -0,0 +1,8 @@
1
+ <head>
2
+ <title>{{ page.title }} | {{ site.title }}</title>
3
+
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+
7
+ <link rel="stylesheet" href="{{ '/assets/blue.css' | relative_url }}">
8
+ </head>
@@ -0,0 +1,6 @@
1
+ <html>
2
+ {% include head.html %}
3
+ <body>
4
+ {{ content }}
5
+ </body>
6
+ </html>
data/_sass/base.scss ADDED
@@ -0,0 +1,7 @@
1
+ body {
2
+ background-color: #007fff;
3
+ font-family: sans-serif;
4
+ margin: auto;
5
+ max-width: 70ch;
6
+ color: #00007f;
7
+ }
data/assets/blue.scss ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "base.scss";
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bluetonic
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - SuperYoshi10000
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-10-26 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
+ - LICENSE
47
+ - README.md
48
+ - _config.yml
49
+ - _includes/head.html
50
+ - _layouts/default.html
51
+ - _sass/base.scss
52
+ - assets/blue.scss
53
+ homepage: ''
54
+ licenses:
55
+ - MIT
56
+ metadata: {}
57
+ rdoc_options: []
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ requirements: []
71
+ rubygems_version: 3.6.2
72
+ specification_version: 4
73
+ summary: ''
74
+ test_files: []