Skip to content

Commit cadabb7

Browse files
authored
Merge pull request #25 from AA1-34-Ganesh/add-honeycomb-theme
Added Honeycomb Orbitron theme with new pattern, fonts.
2 parents bbf2962 + b1ff97c commit cadabb7

File tree

7 files changed

+51
-8
lines changed

7 files changed

+51
-8
lines changed

js/data/patterns.js

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/data/presets.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,5 +427,27 @@
427427
"titleFont": "Passero One",
428428
"subtitleFont": "Source Code Pro",
429429
"previewImage": "theme-21-preview.png"
430-
}
430+
},
431+
{
432+
"background": "#1b1f1c",
433+
"padding": 40,
434+
"titleColor": "#00FF41",
435+
"subtitleColor": "#A0FFA0",
436+
"borderColor": "#00FF41",
437+
"borderSize": 3,
438+
"borderRadius": 12,
439+
"textAlign": "center",
440+
"decoration": "headphones-cat-1.png",
441+
"decorationSize": 90,
442+
"pattern": "honeycomb",
443+
"patternColor": "#004d00",
444+
"patternSize": 80,
445+
"patternOpacity": 0.6,
446+
"titleFontSize": 44,
447+
"subtitleFontSize": 22,
448+
"titleFont": "Orbitron",
449+
"subtitleFont": "Source Code Pro",
450+
"previewImage": "theme-22-preview.png"
451+
}
452+
431453
]

partials/toolbox/background.html

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@
7575
</button>
7676
<button type="button" class="btn" aria-label="falling-triangles pattern button"
7777
data-pattern-value="falling-triangles">
78-
<img src="./images/patterns/falling-triangles-thumbnail.svg" alt="falling-triangles pattern button" style="width: 45px;" />
78+
<img src="./images/patterns/falling-triangles-thumbnail.svg" alt="falling-triangles pattern button"
79+
style="width: 45px;" />
7980
</button>
8081
<button type="button" class="btn" aria-label="glamorous pattern button" data-pattern-value="glamorous">
8182
<img src="./images/patterns/glamorous-thumbnail.svg" alt="glamorous pattern button" />
@@ -98,7 +99,8 @@
9899
</button>
99100
<button type="button" class="btn" aria-label="endless-clouds pattern button"
100101
data-pattern-value="endless-clouds">
101-
<img src="./images/patterns/endless-clouds-thumbnail.svg" alt="endless-clouds pattern button" style="width: 45px;" />
102+
<img src="./images/patterns/endless-clouds-thumbnail.svg" alt="endless-clouds pattern button"
103+
style="width: 45px;" />
102104
</button>
103105
<!-- <button type="button" class="btn" aria-label="random-shapes pattern button"
104106
data-pattern-value="random-shapes">
@@ -126,7 +128,8 @@
126128
style="width: 45px;" />
127129
</button>
128130
<button type="button" class="btn" aria-label="moroccan pattern button" data-pattern-value="moroccan">
129-
<img src="./images/patterns/moroccan-thumbnail.svg" alt="moroccan pattern button" style="width: 50px;" />
131+
<img src="./images/patterns/moroccan-thumbnail.svg" alt="moroccan pattern button"
132+
style="width: 50px;" />
130133
</button>
131134
<button type="button" class="btn" aria-label="charlie-brown pattern button"
132135
data-pattern-value="charlie-brown">
@@ -142,14 +145,20 @@
142145
<img src="./images/patterns/squares-thumbnail.svg" alt="squares pattern button" style="width: 45px;" />
143146
</button>
144147
<button type="button" class="btn" aria-label="graph-paper pattern button" data-pattern-value="graph-paper">
145-
<img src="./images/patterns/graph-paper-thumbnail.svg" alt="graph-paper pattern button" style="width: 50px;" />
148+
<img src="./images/patterns/graph-paper-thumbnail.svg" alt="graph-paper pattern button"
149+
style="width: 50px;" />
146150
</button>
147151
<button type="button" class="btn" aria-label="brick-wall pattern button" data-pattern-value="brick-wall">
148-
<img src="./images/patterns/brick-wall-thumbnail.svg" alt="brick-wall pattern button"/>
152+
<img src="./images/patterns/brick-wall-thumbnail.svg" alt="brick-wall pattern button" />
149153
</button>
150154
<button type="button" class="btn" aria-label="dalmatian-spots pattern button"
151155
data-pattern-value="dalmatian-spots">
152-
<img src="./images/patterns/dalmatian-spots-thumbnail.svg" alt="dalmatian-spots pattern button" style="width: 50px;" />
156+
<img src="./images/patterns/dalmatian-spots-thumbnail.svg" alt="dalmatian-spots pattern button"
157+
style="width: 50px;" />
158+
</button>
159+
<button type="button" class="btn" aria-label="honeycomb pattern button" data-pattern-value="honeycomb">
160+
<img src="./images/patterns/honeycomb-thumbnail.svg" alt="honeycomb pattern button"
161+
style="width: 50px;" />
153162
</button>
154163
</div>
155164
</div>

partials/toolbox/main.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
<!-- <option value="Georgia">Georgia</option> -->
8282
<option value="Garamond" style="font-family: Garamond;">Garamond</option>
8383
<option value="Courier New" style="font-family: Courier New;">Courier New</option>
84+
<option value="Orbitron" style="font-family: Orbitron;">Orbitron</option>
8485
<!-- <option value="Brush Script MT" style="font-family: Brush Script MT;">Brush Script MT</option> -->
8586
</select>
8687
</div>
@@ -113,6 +114,7 @@
113114
<!-- <option value="Georgia">Georgia</option> -->
114115
<option value="Garamond" style="font-family: Garamond;">Garamond</option>
115116
<option value="Courier New" style="font-family: Courier New;">Courier New</option>
117+
<option value="Orbitron" style="font-family: Orbitron;">Orbitron</option>
116118
<!-- <option value="Brush Script MT" style="font-family: Brush Script MT;">Brush Script MT</option> -->
117119
</select>
118120
</div>

partials/toolbox/test-fonts.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
<div class="pixelify-sans"> Hey! I'm Leví Arista. username/project - pixelify-sans</div>
2828
<div class="kalam"> Hey! I'm Leví Arista. username/project - kalam</div>
2929
<div class="playball"> Hey! I'm Leví Arista. username/project - playball</div>
30+
<div class="orbitron">Hey! I'm Leví Arista. username/project - orbitron</div>
3031
<!-- <div class="dancing-script"> Hey! I'm Leví Arista. username/project - dancing-script</div> -->
3132
<!-- <div class="courgette"> Hey! I'm Leví Arista. username/project - courgette [X]</div> -->
3233
</div>
Lines changed: 7 additions & 0 deletions
Loading
44.4 KB
Loading

0 commit comments

Comments
 (0)