bluetonic 0.1.0 → 0.2.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/_sass/base.scss +37 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e7a817971627e733418b97b5130a652c327fa821b68f7548ef61400a63ff4ca
4
- data.tar.gz: 0753e07ebc3c7aac66324ff0075cd93f243b52bf13ac2d37ccf7b8e4e1ee2c24
3
+ metadata.gz: 46dd55d9d88dc7466592b10ae70fe3fd7444ea041aa184a0853679d4e6ae2b3e
4
+ data.tar.gz: c3a565d4f5bdd28b893877506af2919dcf2e9b5640ec1fe39eb480868bfd64fe
5
5
  SHA512:
6
- metadata.gz: 80fe8e73aeb316d22394e61cf7670652ed293ce8308d671ceab88967e568888580a99f776d2803a3f6e5f0eefe6661474e077e6d579bac6a789f6be785a034e1
7
- data.tar.gz: 555650c72d0110300d70e22ae73cd32679a1203819d1596824b4296d4eea54e4b43bad963f77971b3c692a156e6d1f8c5455acfb76c1a2145c9d28b36a069b66
6
+ metadata.gz: cf341e52eb97c1e5fa0a509b4eccbc7cefcfac5b6cb9b0b421fe7a0b50ab0af0d9d475329938c69d4c4b1df6d034ee0d6c6a75bc8d26495effcecc6b2970e1ae
7
+ data.tar.gz: c753cbd68d2ae839ef176aa0609d37ab39f7abb1b5458d68e8da06ca8d8fa5eb94269fc4851e602c6b29610f65c2506a93cf891ccbf58a28cf776c3ce949d583
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # Blue
2
+ ![Gem Version](https://img.shields.io/gem/v/bluetonic)
2
3
  ![GitHub branch status](https://img.shields.io/github/checks-status/SuperYoshi10000/BlueTonic/main)
3
4
  ![GitHub License](https://img.shields.io/github/license/SuperYoshi10000/bluetonic)
4
5
 
5
6
 
6
-
7
7
  This theme is a blue theme for Jekyll.
8
8
 
9
9
  Everything is some shade of blue.
10
10
 
11
11
  ## Usage
12
- You can find it at [a](https://example.com).
12
+ You can find it at https://rubygems.org/gems/bluetonic.
data/_sass/base.scss CHANGED
@@ -1,7 +1,41 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Special+Gothic:wght@400..700&display=swap');
2
+
3
+ * {
4
+ --color-bg: #007fff;
5
+ --color-bg2: #003fff;
6
+ --color-fg: #00007f;
7
+ --color-line: #00003f;
8
+ }
9
+
1
10
  body {
2
- background-color: #007fff;
3
- font-family: sans-serif;
11
+ background-color: var(--color-bg);
12
+ font-family: "Special Gothic", sans-serif;
4
13
  margin: auto;
5
14
  max-width: 70ch;
6
- color: #00007f;
15
+ color: var(--color-fg);
16
+ }
17
+
18
+ h1, h2, h3, h4, h5, h6 {
19
+ font-family: "Montserrat", sans-serif;
20
+ font-weight: 300;
21
+ }
22
+ h1, h2 {
23
+ border-bottom: 1px solid var(--color-line);
24
+ }
25
+ hr {
26
+ border: none;
27
+ border-bottom: 1px solid var(--color-line);
28
+ }
29
+
30
+ pre, code {
31
+ font-family: "IBM Plex Mono", monospace;
32
+ background-color: var(--color-bg2);
33
+ }
34
+ code {
35
+ padding: 2px;
36
+ border-radius: 2px;
37
+ }
38
+ pre {
39
+ padding: 5px;
40
+ border-radius: 5px;
7
41
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bluetonic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SuperYoshi10000