hima 1.0.3 → 1.0.4
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 +4 -4
- data/README.md +6 -0
- data/_config.yml +2 -2
- data/_sass/hima/colourschemes/_gruvbox-light-theme.scss +2 -2
- data/_sass/hima/colourschemes/auto.scss +3 -3
- data/_sass/hima/main.scss +0 -1
- data/assets/css/style.scss +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef3c9fc04bf537d4864657fcadc4d80dcaf0f1d2988357ed92596b3bd3f2acda
|
|
4
|
+
data.tar.gz: b547c7dd9c6f2fbeecc223730c5f43f61694597530c14b50ec103fbf3f6462f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60604c04f4e26ac64cab6cb4bf931e0e7bd04619a61bdf605113987f7abaec53d9954630f4aa011819cd78e35b69c9ae0eb655d9b14889a999de391e30355307
|
|
7
|
+
data.tar.gz: 918d18d1ff54e4f886aa916402558f5fa785828f621421d4e0590428a9e613878499f42315583b08e9c85904b060a58936332560f3867d8ab41aefc97f74cfe9
|
data/README.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
hima is a simple Jekyll theme with the goal of being accessible to everyone, and follows [The A11y Project's accessibility guidelines](https://www.a11yproject.com/checklist/).
|
|
5
5
|
|
|
6
|
+
[Theme Preview](https://brandoncardoso.github.io/hima)
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+

|
|
11
|
+
|
|
6
12
|
## Installation
|
|
7
13
|
|
|
8
14
|
### Remote Theme Installation (for GitHub pages)
|
data/_config.yml
CHANGED
|
@@ -4,11 +4,11 @@ author:
|
|
|
4
4
|
email: youremail@domain.com
|
|
5
5
|
|
|
6
6
|
header_pages:
|
|
7
|
-
- users.md
|
|
8
7
|
- about.md
|
|
8
|
+
- users.md
|
|
9
9
|
|
|
10
10
|
hima:
|
|
11
|
-
colourscheme:
|
|
11
|
+
colourscheme: auto # auto, light, dark
|
|
12
12
|
social:
|
|
13
13
|
- { platform: github, url: 'https://www.github.com' }
|
|
14
14
|
- { platform: linkedin, url: 'https://www.linkedin.com' }
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@media (prefers-color-scheme: light) {
|
|
2
|
-
@import '
|
|
2
|
+
@import './_gruvbox-light-theme';
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
@media (prefers-color-scheme: dark) {
|
|
6
|
-
@import '
|
|
6
|
+
@import './_gruvbox-dark-theme';
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
@import '
|
|
9
|
+
@import './_base';
|
data/_sass/hima/main.scss
CHANGED
data/assets/css/style.scss
CHANGED