jekyll-bear-theme 0.2.4 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf797690bed536ffe7644ac0eda0ef8be4ea909bd115f9c71cbc41762edfa77c
4
- data.tar.gz: 6dc66e27382cce24c1a0b64c94d7be4e85113afdfaa1635d793ebd1f377715b3
3
+ metadata.gz: 3d03b43a44bb6836f6c5e1e9aa92d850aaf064b9ca8c6e7857554909e6a53dbf
4
+ data.tar.gz: cf00fe723e7d08808aa0a8e36861262554058004b790db48bc6f7f4fd940aea2
5
5
  SHA512:
6
- metadata.gz: e4d072da4d9d67c53729675503da52780c2ccfd8918edbd731a01e824f68564b129e784a3d9acda360a532d8173ac3230e60a447800d1940cb37fd9a4716fc9e
7
- data.tar.gz: 3d525e9fa0717bcc71250d1370f1699cd3263ed95aca5f4218a49fb0fc259216b91f0e1ad955b290fa0e71860a17179d4841022d07242d3c602ce62e74ace468
6
+ metadata.gz: 38550f11d7725953e630b3514e83dc690ace23b525bc1aa528ffe24decb3b61cafa2044d311efb2af920b55b3d0e4ea0367d0ad392ab8373aee90dedf88f41ad
7
+ data.tar.gz: b533bf95ddb547ff7bc5c14c58046a27abdcf9485eb3d827a66f3e915c18bf28ed23d1713fefaff3c0ac034c8ca431ef35a41ea065a6495e2afe4ca25398f41a
data/README.md CHANGED
@@ -18,7 +18,7 @@ This is a port of it's theme to Jekyll, with some tweaks. So you can use GitHub
18
18
  - Code highlighting
19
19
  - **Life in Weeks visualization** - Interactive timeline of your life events
20
20
  - **IBM Plex Mono typography** - Consistent monospace font across all elements
21
- - **Coffee-themed color palette** - Warm, coffee-inspired colors with automatic dark mode
21
+ - **Pine Forest color palette** - Cool, nature-inspired greens with automatic dark mode
22
22
 
23
23
  ## Screenshots
24
24
 
@@ -61,7 +61,7 @@ Or install it yourself as:
61
61
 
62
62
  ### Design Philosophy
63
63
 
64
- jekyllBear now features a **monospace-first design** with IBM Plex Mono typography, creating a technical yet warm aesthetic. The coffee-themed color palette provides visual comfort while maintaining excellent readability across light and dark modes.
64
+ jekyllBear now features a **monospace-first design** with IBM Plex Mono typography, creating a technical yet natural aesthetic. The pine forest color palette provides visual tranquility while maintaining excellent readability across light and dark modes, evoking the calm and focus of a peaceful woodland environment.
65
65
 
66
66
  ### Customization
67
67
 
@@ -69,7 +69,9 @@ The theme's CSS is now highly modular and customizable:
69
69
 
70
70
  - **Typography**: Modify `--font-main`, `--font-secondary`, and `--font-monospace` variables
71
71
  - **Spacing**: Use the standardized spacing scale for consistent layouts
72
- - **Colors**: All theme colors are centralized in CSS custom properties
72
+ - **Colors**: All theme colors are centralized in CSS custom properties for easy customization
73
+ - **Pine Forest Palette**: Cool greens ranging from light pine mist to deep forest shadows
74
+ - **Glow Effects**: Configurable glow colors via `--glow-color-light` and `--glow-color-medium`
73
75
  - **Layout**: Responsive design with mobile-first approach
74
76
 
75
77
  ## Usage
Binary file
Binary file
Binary file
Binary file
Binary file
data/assets/style.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /* =============================================================================
2
- JEKYLL BEAR THEME - COFFEE AESTHETIC
2
+ JEKYLL BEAR THEME - PINE FOREST AESTHETIC
3
3
  ============================================================================= */
4
4
  /* =============================================================================
5
5
  FONTS & IMPORTS
@@ -40,35 +40,43 @@
40
40
  --z-dropdown: 200;
41
41
  --z-modal: 1000;
42
42
 
43
- /* Coffee Theme Colors - Light Mode */
44
- --background-color: #F8F1E5; /* Lighter cream */
45
- --heading-color: #2C1E15; /* Darker roast coffee */
46
- --text-color: #1F1408; /* Darker espresso */
47
- --link-color: #7C4011; /* Darker caramel */
48
- --visited-color: #5E3211; /* Darker roasted coffee beans */
49
- --main-color: #96572D; /* Darker café au lait */
50
- --code-background-color: #E6D7C3; /* Coffee stained paper */
51
- --code-color: #2C1E15; /* Darker roast coffee */
52
- --blockquote-color: #B99B6B; /* Darker café latte foam */
43
+ /* Pine Forest Theme Colors - Light Mode */
44
+ --background-color: #F5F7F3; /* Light pine needle mist */
45
+ --heading-color: #1A3025; /* Deep forest green */
46
+ --text-color: #0F2018; /* Dark pine shadow */
47
+ --link-color: #2D5016; /* Forest moss */
48
+ --visited-color: #1E3A11; /* Deep woodland */
49
+ --main-color: #4A7C59; /* Pine needle green */
50
+ --code-background-color: #E8EDEA; /* Frosted pine */
51
+ --code-color: #1A3025; /* Deep forest green */
52
+ --blockquote-color: #7A9B85; /* Sage green */
53
53
 
54
54
  /* Interactive colors derived from theme */
55
55
  --hover-color: white;
56
56
  --border-color: var(--blockquote-color);
57
57
  --shadow-color: rgba(0, 0, 0, 0.18);
58
+
59
+ /* Glow effects for interactive elements */
60
+ --glow-color-light: rgba(45, 80, 22, 0.3);
61
+ --glow-color-medium: rgba(45, 80, 22, 0.5);
58
62
  }
59
63
 
60
64
  /* Dark Mode Color Overrides */
61
65
  @media (prefers-color-scheme: dark) {
62
66
  :root {
63
- --background-color: #1A1310; /* Darker espresso */
64
- --heading-color: #F0DFC0; /* Lighter café latte foam */
65
- --text-color: #F0E6D2; /* Lighter coffee stained paper */
66
- --link-color: #E5A254; /* Lighter caramel drizzle */
67
- --visited-color: #C49B76; /* Lighter roasted coffee beans */
68
- --main-color: #B89470; /* Lighter mocha */
69
- --code-background-color: #2C2117; /* Dark chocolate coffee */
70
- --code-color: #F0DFC0; /* Lighter café latte foam */
71
- --blockquote-color: #6E563D; /* Lighter coffee grounds */
67
+ --background-color: #0D1B12; /* Dark pine shadow */
68
+ --heading-color: #C8D8CE; /* Light pine mist */
69
+ --text-color: #E0EADE; /* Pale forest light */
70
+ --link-color: #7AB069; /* Bright moss green */
71
+ --visited-color: #9BC490; /* Light woodland */
72
+ --main-color: #8BB899; /* Soft pine green */
73
+ --code-background-color: #1A2B1F; /* Dark evergreen */
74
+ --code-color: #C8D8CE; /* Light pine mist */
75
+ --blockquote-color: #4A6B52; /* Forest undergrowth */
76
+
77
+ /* Dark mode glow effects */
78
+ --glow-color-light: rgba(122, 176, 105, 0.3);
79
+ --glow-color-medium: rgba(122, 176, 105, 0.5);
72
80
  }
73
81
  }
74
82
 
@@ -399,11 +407,11 @@ input[type=reset] {
399
407
  animation: pulse 2s ease-in-out infinite;
400
408
  border-width: 2px;
401
409
  border-color: var(--link-color);
402
- box-shadow: 0 0 10px rgba(124, 64, 17, 0.3);
410
+ box-shadow: 0 0 10px var(--glow-color-light);
403
411
  }
404
412
 
405
413
  .week.current.has-events {
406
- box-shadow: 0 0 10px rgba(124, 64, 17, 0.5);
414
+ box-shadow: 0 0 10px var(--glow-color-medium);
407
415
  }
408
416
 
409
417
  @keyframes pulse {
@@ -424,11 +432,11 @@ input[type=reset] {
424
432
  /* Dark Mode Week Adjustments */
425
433
  @media (prefers-color-scheme: dark) {
426
434
  .week.current {
427
- box-shadow: 0 0 10px rgba(229, 162, 84, 0.3);
435
+ box-shadow: 0 0 10px var(--glow-color-light);
428
436
  }
429
437
 
430
438
  .week.current.has-events {
431
- box-shadow: 0 0 10px rgba(229, 162, 84, 0.5);
439
+ box-shadow: 0 0 10px var(--glow-color-medium);
432
440
  }
433
441
  }
434
442
 
@@ -510,7 +518,7 @@ input[type=reset] {
510
518
  animation: carousel-pulse 1.2s cubic-bezier(0.4,0,0.6,1) infinite;
511
519
  border-width: 2px !important;
512
520
  border-color: var(--link-color) !important;
513
- box-shadow: 0 0 10px rgba(124, 64, 17, 0.5);
521
+ box-shadow: 0 0 10px var(--glow-color-medium);
514
522
  z-index: 2;
515
523
  }
516
524
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-bear-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - knhash
@@ -66,8 +66,9 @@ dependencies:
66
66
  - !ruby/object:Gem::Version
67
67
  version: '1.7'
68
68
  description: jekyllBear is a clean, minimal Jekyll theme focused on readability and
69
- simplicity. Features include a responsive design, tag system, life tracking, and
70
- a distraction-free reading experience inspired by Bear Blog.
69
+ simplicity. Features a Pine Forest color palette with cool, nature-inspired greens,
70
+ IBM Plex Mono typography, responsive design, tag system, life tracking visualization,
71
+ and a distraction-free reading experience inspired by Bear Blog.
71
72
  email:
72
73
  - mail@knhash.in
73
74
  executables: []
@@ -133,5 +134,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
134
  requirements: []
134
135
  rubygems_version: 3.6.2
135
136
  specification_version: 4
136
- summary: A minimal, text focused blog theme inspired by Bear Blog
137
+ summary: A minimal, text focused blog theme with Pine Forest aesthetics
137
138
  test_files: []