letitbex-theme 0.1.5 → 0.1.7.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2027a5903bc4aba32d6e9f7c30abe04b3a0522bbfb3fb0be347ea86793d55394
4
- data.tar.gz: 5dea5be7342982387f99f7fd4f440cacd0816f8e4ef73b40f01a63209ed5e824
3
+ metadata.gz: f859cdfb4063608784a10816cb9d4e31b9be5a3bd95121fe08f2df1d02fba50a
4
+ data.tar.gz: ce216c384bc0c810e43c8f3b8e0770dff2fdba9e59ec04893132e6ee01e1499f
5
5
  SHA512:
6
- metadata.gz: fd1388b83e253f2b95cd905a6c3492e8074cc5273506f88493a52de46a50636f6376e4f9502be0646d2fdb92c19af4c040f1ca06c304dede662b3a814092564b
7
- data.tar.gz: 8ef70cd9b92faabe8718cb6903e80f9fadac009fa28fed2ddcf1079fbd2c0505bf85e47f7a7e34ccf5d4b7c44e9bab4d68083fe86014cf8e79dcd8fe1a674d03
6
+ metadata.gz: 935854436352e532966de6ef1c5acb845ef8fc6b8d67645f9dfdd93c8420b2fb47ac414f6b97662ca093268c2a46c1b865124f5ecfba51dcab43b0a972602857
7
+ data.tar.gz: b03ba4ce9867ced04a51dd18c2184c2287f32c21565a99eb9562f18cf7b8fabbe5803176ac6890fe1cc60d811a7364051d28989af5f51c16b39dac86f05081fb
data/README.md CHANGED
@@ -1,19 +1,33 @@
1
-
2
- ![letitbex-theme](assets/screenshot.png)
3
- ![Code-Highlight](assets/Blockquote.png)
4
-
5
1
  ## Installisation
6
2
  - Add this line to Gemfile:
7
3
  > gem "letitbex-theme"
8
4
  - Fetch and update bundled gems by running the following Bundler command:
9
5
  > bundle
10
- - Set theme in _config.yml:
6
+ - Set theme and style in _config.yml:
11
7
  > theme: letitbex-theme
8
+ > style: hacker
9
+ hacker is the default style. The available styles are listed below
12
10
 
13
11
  ## Usage
14
12
  ### Addition configs to config.yml
15
13
  - `header_pages`: to specify which pages should be displayed in navbar
16
14
  - `footer`: string, which will be inserted on the end of the page (doesn't support markup, but html)
17
15
 
16
+ ## Styles
17
+ ### d1
18
+ ![d1](d1.gif)
19
+
20
+ ### dune
21
+ ![dune](dune.gif)
22
+
23
+ ### gits
24
+ ![gits](gits.gif)
25
+
26
+ ### hacker
27
+ ![hacker](hacker.gif)
18
28
 
29
+ ### leaves
30
+ ![leaves](leaves.gif)
19
31
 
32
+ ### neon
33
+ ![neon](neon.gif)
data/_config.yml CHANGED
@@ -6,6 +6,7 @@ theme: letitbex-theme
6
6
 
7
7
  author: mrtsukim0t0-
8
8
  description: something something
9
+ theme: letitbex-theme
9
10
  style: hacker
10
11
  plugins:
11
12
  - jekyll-seo-tag
data/_includes/head.html CHANGED
@@ -3,13 +3,24 @@
3
3
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
5
5
  <title>{{ site.title }}</title>
6
- {%- seo title=false -%}
7
6
 
8
7
  {% if page.robots %}
9
8
  <meta name="robots" content="{{page.robots}}" />
10
9
  {% endif %}
11
10
 
11
+ {%- if site.style == 'gits' -%}
12
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-gits.css" | relative_url }}">
13
+ {%- elsif site.style == 'leaves' -%}
14
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-leaves.css" | relative_url }}">
15
+ {%- elsif site.style == 'dune' -%}
16
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-dune.css" | relative_url }}">
17
+ {%- elsif site.style == 'd1' -%}
18
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-d1.css" | relative_url }}">
19
+ {%- elsif site.style == 'neon' -%}
20
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-neon.css" | relative_url }}">
21
+ {%- elsif site.style == 'hacker' -%}
12
22
  <link rel="stylesheet" type="text/css" href="{{ "/assets/main-hacker.css" | relative_url }}">
23
+ {%- endif -%}
13
24
  <link rel="shortcut icon" type="image/png" href="{{ site.logo }}" >
14
25
 
15
26
  {%- if jekyll.environment == 'production' and site.google_analytics -%}
data/_sass/_d1.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-15);
9
+ --selection-text: var(--code-color-16);
10
+ --highlight-background: var(--code-color-13);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-8);
15
+ --code-color-0: #0a0b08;
16
+ --code-color-1: #675638;
17
+ --code-color-2: #555B47;
18
+ --code-color-3: #5A6651;
19
+ --code-color-4: #6E6754;
20
+ --code-color-5: #656D56;
21
+ --code-color-6: #936D51;
22
+ --code-color-7: #ccc0ac;
23
+ --code-color-8: #8e8678;
24
+ --code-color-9: #675638;
25
+ --code-color-10: #555B47;
26
+ --code-color-11: #5A6651;
27
+ --code-color-12: #6E6754;
28
+ --code-color-13: #656D56;
29
+ --code-color-14: #936D51;
30
+ --code-color-15: #ccc0ac;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
data/_sass/_dune.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-0);
7
+ --border: dashed 1px var(--code-color-17);
8
+ --selection-background: var(--code-color-16);
9
+ --selection-text: var(--code-color-8);
10
+ --highlight-background: var(--code-color-9);
11
+ --background-color: var(--code-color-2);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-17);
15
+ --code-color-0: #422001;
16
+ --code-color-1: #F5AF50;
17
+ --code-color-2: #F4B76D;
18
+ --code-color-3: #FEC15C;
19
+ --code-color-4: #FDC773;
20
+ --code-color-5: #F8C890;
21
+ --code-color-6: #DCC3BA;
22
+ --code-color-7: #ead7c8;
23
+ --code-color-8: #a3968c;
24
+ --code-color-9: #F5AF50;
25
+ --code-color-10: #F4B76D;
26
+ --code-color-11: #FEC15C;
27
+ --code-color-12: #FDC773;
28
+ --code-color-13: #F8C890;
29
+ --code-color-14: #DCC3BA;
30
+ --code-color-15: #ead7c8;
31
+ --code-color-16: #ffffff;
32
+ --code-color-17: #514B46;
33
+ --code-color-18: #5e4807;
34
+ }
data/_sass/_gits.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-5);
9
+ --selection-text: var(--code-color-0);
10
+ --highlight-background: var(--code-color-2);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-2);
15
+ --code-color-0: #15121d;
16
+ --code-color-1: #8E767F;
17
+ --code-color-2: #3F7782;
18
+ --code-color-3: #587488;
19
+ --code-color-4: #717985;
20
+ --code-color-5: #788790;
21
+ --code-color-6: #75ADC5;
22
+ --code-color-7: #c1c5c6;
23
+ --code-color-8: #87898a;
24
+ --code-color-9: #8E767F;
25
+ --code-color-10: #3F7782;
26
+ --code-color-11: #587488;
27
+ --code-color-12: #717985;
28
+ --code-color-13: #788790;
29
+ --code-color-14: #75ADC5;
30
+ --code-color-15: #c1c5c6;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-5);
9
+ --selection-text: var(--code-color-15);
10
+ --highlight-background: var(--code-color-13);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-2);
15
+ --code-color-0: #0e0f10;
16
+ --code-color-1: #526661;
17
+ --code-color-2: #3E816D;
18
+ --code-color-3: #628679;
19
+ --code-color-4: #AD4A8D;
20
+ --code-color-5: #73978B;
21
+ --code-color-6: #93AEA4;
22
+ --code-color-7: #ccd9d4;
23
+ --code-color-8: #8e9794;
24
+ --code-color-9: #526661;
25
+ --code-color-10: #3E816D;
26
+ --code-color-11: #628679;
27
+ --code-color-12: #AD4A8D;
28
+ --code-color-13: #73978B;
29
+ --code-color-14: #93AEA4;
30
+ --code-color-15: #ccd9d4;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
data/_sass/_neon.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-5);
9
+ --selection-text: var(--code-color-0);
10
+ --highlight-background: var(--code-color-13);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-2);
15
+ --code-color-0: #022937;
16
+ --code-color-1: #8A3279;
17
+ --code-color-2: #8D497B;
18
+ --code-color-3: #3A9C6C;
19
+ --code-color-4: #2F628E;
20
+ --code-color-5: #A5338B;
21
+ --code-color-6: #B35499;
22
+ --code-color-7: #92c8c6;
23
+ --code-color-8: #668c8a;
24
+ --code-color-9: #8A3279;
25
+ --code-color-10: #8D497B;
26
+ --code-color-11: #3A9C6C;
27
+ --code-color-12: #2F628E;
28
+ --code-color-13: #A5338B;
29
+ --code-color-14: #B35499;
30
+ --code-color-15: #92c8c6;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
data/_sass/base.scss CHANGED
@@ -1,11 +1,12 @@
1
1
  @charset "utf-8";
2
- @import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700');
3
-
2
+ @font-face {
3
+ font-family: Iosevka;
4
+ src: url(https://mrtsukimoto.in/Iosevka-Nerd-Font.ttf) format(truetype);
5
+ }
4
6
  /**
5
7
  * Style variables
6
8
  */
7
- //$base-font-family: 'Source Code Pro', monospace !default;
8
- $base-font-family: 'Envy Code R';
9
+ $base-font-family: 'Iosevka';
9
10
  $base-font-size: 16px !default;
10
11
  $second-font-size: 13px;
11
12
  $mobile-font-size: 13px !default;
@@ -18,10 +19,10 @@ $container-max-width: 600px !default;
18
19
  */
19
20
  body { background-color: var(--background-color); margin: 0 auto; padding: 0; font-family: $base-font-family; font-size: $base-font-size; color: var(--text-color); text-align: left; line-height: $base-line-height !important; }
20
21
  h1, h2, h3, h4, h5, h6 { font-size: $base-font-size; margin: 0px; margin-top: 22px; font-weight: bold; color: var(--text-color); }
21
- p, ul, ol { margin: 0px; color: var(--text-color); }
22
+ ul, ol { margin: 0px; color: var(--text-color); }
22
23
  img { display: inline-block; margin-left:auto; margin-right: auto; }
23
- // #logo_foot { display:inline ;margin-left: auto; margin-right:auto; }
24
- // #logo_head { display:inline-block ;margin-left: auto; margin-right:auto; }
24
+ #logo_foot { display:initial ;margin-left: auto; margin-right:auto; }
25
+ #logo_head { display:initial ;margin-left: auto; margin-right:auto; }
25
26
  a { text-decoration: none; color: var(--link-color); }
26
27
  a:hover { color: var(--background-color); background-color: var(--base-color); }
27
28
  @media only screen and (max-device-width: 500px) { * { font-size: $mobile-font-size !important; } }
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "d1";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "dune";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "gits";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "leaves";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "neon";
6
+ @import "base";
data/assets/main.scss CHANGED
@@ -3,6 +3,12 @@
3
3
  ---
4
4
 
5
5
  @import "base";
6
+ @import "hacker";
7
+ @import "leaves";
8
+ @import "neon";
9
+ @import "d1";
10
+ @import "gits";
11
+ @import "dune";
6
12
 
7
13
  @media (prefers-color-scheme: hacker) {
8
14
  @import "hacker";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: letitbex-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - mrtsukim0t0-
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-31 00:00:00.000000000 Z
11
+ date: 2022-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -84,13 +84,20 @@ files:
84
84
  - _layouts/home.html
85
85
  - _layouts/page.html
86
86
  - _layouts/post.html
87
+ - _sass/_d1.scss
88
+ - _sass/_dune.scss
89
+ - _sass/_gits.scss
87
90
  - _sass/_hacker.scss
91
+ - _sass/_leaves.scss
92
+ - _sass/_neon.scss
88
93
  - _sass/base.scss
89
- - assets/Blockquote.png
90
- - assets/logo.png
94
+ - assets/main-d1.scss
95
+ - assets/main-dune.scss
96
+ - assets/main-gits.scss
91
97
  - assets/main-hacker.scss
98
+ - assets/main-leaves.scss
99
+ - assets/main-neon.scss
92
100
  - assets/main.scss
93
- - assets/screenshot.png
94
101
  homepage: https://gitlab.com/mrtsukim0t0-/letitbex-theme.git
95
102
  licenses:
96
103
  - MIT
@@ -110,8 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
117
  - !ruby/object:Gem::Version
111
118
  version: '0'
112
119
  requirements: []
113
- rubyforge_project:
114
- rubygems_version: 2.7.6.2
120
+ rubygems_version: 3.2.5
115
121
  signing_key:
116
122
  specification_version: 4
117
123
  summary: Personalised copy of jekyll-theme-console
Binary file
data/assets/logo.png DELETED
Binary file
Binary file