summaryrefslogtreecommitdiff
path: root/extras/html/themes/sharp_canyon
diff options
context:
space:
mode:
Diffstat (limited to 'extras/html/themes/sharp_canyon')
-rw-r--r--extras/html/themes/sharp_canyon/LICENSE21
-rw-r--r--extras/html/themes/sharp_canyon/code.ttfbin0 -> 64104 bytes
-rw-r--r--extras/html/themes/sharp_canyon/example.html75
-rw-r--r--extras/html/themes/sharp_canyon/handnotes.ttfbin0 -> 38344 bytes
-rw-r--r--extras/html/themes/sharp_canyon/style.css205
-rw-r--r--extras/html/themes/sharp_canyon/theme.conf8
6 files changed, 309 insertions, 0 deletions
diff --git a/extras/html/themes/sharp_canyon/LICENSE b/extras/html/themes/sharp_canyon/LICENSE
new file mode 100644
index 0000000..2c8e62a
--- /dev/null
+++ b/extras/html/themes/sharp_canyon/LICENSE
@@ -0,0 +1,21 @@
+Theme: sharp_canyon
+Generated: 2025-06-22 21:38:55
+
+Layout: retro
+Color Scheme: monochromatic (Dark)
+
+Font Licenses:
+==============
+Heading Font: roboto-slab
+License: Apache
+Category: serif
+
+Body Font: oxygen
+License: OFL
+Category: sans-serif
+
+Code Font: intelone-mono
+License: OFL
+Category: monospace
+
+All fonts are free for personal use.
diff --git a/extras/html/themes/sharp_canyon/code.ttf b/extras/html/themes/sharp_canyon/code.ttf
new file mode 100644
index 0000000..2711179
--- /dev/null
+++ b/extras/html/themes/sharp_canyon/code.ttf
Binary files differ
diff --git a/extras/html/themes/sharp_canyon/example.html b/extras/html/themes/sharp_canyon/example.html
new file mode 100644
index 0000000..35d7f13
--- /dev/null
+++ b/extras/html/themes/sharp_canyon/example.html
@@ -0,0 +1,75 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>Sharp Canyon - Gemtexter Theme</title>
+ <link rel="stylesheet" href="style.css" />
+</head>
+<body>
+ <div class="header">
+ <h1>Sharp Canyon</h1>
+ <p>A retro layout with monochromatic colors</p>
+ </div>
+
+ <div class="content">
+ <h1>Welcome to Sharp Canyon</h1>
+ <p>This theme features a carefully crafted retro layout with a dark monochromatic color scheme. The typography combines serif fonts for headings with sans-serif for body text.</p>
+
+ <h2>Typography Showcase</h2>
+ <p>The oxygen font family provides excellent readability for body text, while roboto-slab adds character to headings. Code blocks use intelone-mono for clarity.</p>
+
+ <h2>Color Palette</h2>
+ <p>Primary: <span style="color: #b98f33; font-weight: bold;">#b98f33</span> |
+ Secondary: <span style="color: #78602d; font-weight: bold;">#78602d</span> |
+ Accent: <span style="color: #b49c67; font-weight: bold;">#b49c67</span></p>
+
+ <h3>Interactive Elements</h3>
+ <p>Links like <a href="#">this example</a> and longer <a href="#" class="textlink">text links that demonstrate the theme's navigation style</a> use the secondary color.</p>
+
+ <div class="quote">
+ "Design is not just what it looks like and feels like. Design is how it works." — Steve Jobs
+ </div>
+
+ <h3>Code Examples</h3>
+ <p>Inline code like <code>theme.generate()</code> and larger blocks:</p>
+ <pre>// Theme configuration
+const theme = {
+ name: "sharp_canyon",
+ layout: "retro",
+ colors: {
+ primary: "#b98f33",
+ secondary: "#78602d",
+ accent: "#b49c67"
+ },
+ fonts: {
+ heading: "roboto-slab",
+ body: "oxygen",
+ code: "intelone-mono"
+ }
+};</pre>
+
+ <h2>Content Structure</h2>
+ <ul>
+ <li>Clean, readable typography with 16px base font size</li>
+ <li>Heading scale ratio of 2.37x for visual hierarchy</li>
+ <li>Line height of 1.46 for comfortable reading</li>
+ <li>Retro layout optimized for content flow</li>
+ <li>Dark theme with monochromatic color harmony</li>
+ </ul>
+
+ <h2>Font Licensing</h2>
+ <p>All fonts used in this theme are properly licensed:</p>
+ <ul>
+ <li>roboto-slab: Apache License</li>
+ <li>oxygen: OFL License</li>
+ <li>intelone-mono: OFL License</li>
+ </ul>
+
+ <h3>Final Thoughts</h3>
+ <p>Every element of this theme has been carefully designed to create a harmonious reading experience. The retro layout ensures content is presented in an engaging way, while the color scheme provides the perfect backdrop for your words to shine.</p>
+
+ <p>Whether you're writing technical documentation, creative prose, or anything in between, this theme adapts to showcase your content beautifully.</p>
+ </div>
+</body>
+</html> \ No newline at end of file
diff --git a/extras/html/themes/sharp_canyon/handnotes.ttf b/extras/html/themes/sharp_canyon/handnotes.ttf
new file mode 100644
index 0000000..25e688b
--- /dev/null
+++ b/extras/html/themes/sharp_canyon/handnotes.ttf
Binary files differ
diff --git a/extras/html/themes/sharp_canyon/style.css b/extras/html/themes/sharp_canyon/style.css
new file mode 100644
index 0000000..beac592
--- /dev/null
+++ b/extras/html/themes/sharp_canyon/style.css
@@ -0,0 +1,205 @@
+/* Base styles */
+@font-face {
+ font-family: 'text';
+ src: url("./text.ttf") format("truetype");
+}
+
+@font-face {
+ font-family: 'heading';
+ src: url("./heading.ttf") format("truetype");
+}
+
+@font-face {
+ font-family: 'code';
+ src: url("./code.ttf") format("truetype");
+}
+
+@font-face {
+ font-family: 'handnotes';
+ src: url("./handnotes.ttf") format("truetype");
+}
+
+:root {
+ --color-primary: #b98f33;
+ --color-secondary: #78602d;
+ --color-accent: #b49c67;
+ --color-bg: #211f1b;
+ --color-text: #e1e1e1;
+ --font-size-base: 16px;
+ --font-size-h1: 2.37em;
+ --font-size-h2: 1.78em;
+ --font-size-h3: 1.33em;
+ --line-height: 1.46;
+}
+
+* {
+ box-sizing: border-box;
+}
+
+html {
+ font-size: var(--font-size-base);
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+body {
+ font-family: text, sans-serif;
+ background-color: var(--color-bg);
+ color: var(--color-text);
+ line-height: var(--line-height);
+ margin: 0;
+ padding: 0;
+ overflow-wrap: break-word;
+}
+
+h1, h2, h3 {
+ font-family: heading, serif;
+ line-height: 1.2;
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+}
+
+h1 {
+ font-size: var(--font-size-h1);
+ color: var(--color-primary);
+}
+
+h2 {
+ font-size: var(--font-size-h2);
+ color: var(--color-primary);
+}
+
+h3 {
+ font-size: var(--font-size-h3);
+ color: var(--color-secondary);
+}
+
+a {
+ font-family: code, monospace;
+ color: var(--color-secondary);
+ text-decoration: none;
+ transition: all 0.3s ease;
+}
+
+a:hover {
+ color: var(--color-accent);
+ text-decoration: underline;
+}
+
+.textlink {
+ font-family: text, sans-serif;
+}
+
+.quote {
+ font-family: handnotes, cursive;
+ border-left: 4px solid var(--color-accent);
+ padding: 1em 1.5em;
+ margin: 1.5em 0;
+ background-color: rgba(185, 143, 51, 0.07);
+ font-style: italic;
+}
+
+pre {
+ font-family: code, monospace;
+ background-color: rgba(225, 225, 225, 0.04);
+ border: 1px solid rgba(225, 225, 225, 0.13);
+ padding: 1em;
+ overflow-x: auto;
+ border-radius: 4px;
+ font-size: 0.9em;
+}
+
+code {
+ font-family: code, monospace;
+ background-color: rgba(225, 225, 225, 0.04);
+ padding: 0.2em 0.4em;
+ border-radius: 3px;
+ font-size: 0.9em;
+}
+
+ul, ol {
+ padding-left: 2em;
+ margin: 1em 0;
+}
+
+li {
+ margin: 0.5em 0;
+}
+
+img {
+ max-width: 100%;
+ height: auto;
+}
+
+hr {
+ border: none;
+ border-top: 1px solid rgba(225, 225, 225, 0.20);
+ margin: 2em 0;
+}
+
+
+/* Layout: retro */
+
+@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap");
+
+body {
+ background-color: #f4e8d0;
+ color: #2a2a2a;
+ padding: 2em;
+ position: relative;
+}
+
+body::before {
+ content: "";
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background-image: repeating-linear-gradient( 0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px );
+ pointer-events: none;
+ z-index: 1;
+}
+
+.header {
+ background-color: #b98f33;
+ color: #f4e8d0;
+ padding: 2em;
+ margin: -2em -2em 2em -2em;
+ text-align: center;
+ box-shadow: 0 4px 8px rgba(0,0,0,0.3);
+ position: relative;
+ z-index: 2;
+}
+
+.header h1 {
+ font-family: 'Courier Prime', monospace;
+ font-size: 3em;
+ margin: 0;
+ text-transform: uppercase;
+ letter-spacing: 0.1em;
+ color: #f4e8d0;
+}
+
+h1, h2, h3 {
+ font-family: 'Courier Prime', monospace;
+ text-transform: uppercase;
+ letter-spacing: 0.05em;
+ position: relative;
+ z-index: 2;
+}
+
+p, ul, pre, .quote {
+ background-color: rgba(255,255,255,0.8);
+ padding: 1.5em;
+ margin: 1em 0;
+ box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
+ position: relative;
+ z-index: 2;
+}
+
+a {
+ color: #78602d;
+ text-decoration: underline;
+ text-decoration-style: wavy;
+}
diff --git a/extras/html/themes/sharp_canyon/theme.conf b/extras/html/themes/sharp_canyon/theme.conf
new file mode 100644
index 0000000..19a2553
--- /dev/null
+++ b/extras/html/themes/sharp_canyon/theme.conf
@@ -0,0 +1,8 @@
+declare -xr HTML_HEADER=./extras/html/header.html.part
+declare -xr HTML_FOOTER=./extras/html/footer.html.part
+declare -xr HTML_CSS_STYLE=$HTML_THEME_DIR/style.css
+declare -xr HTML_WEBFONT_HEADING=./extras/html/fonts/roboto-slab/roboto-slab-Bold.ttf
+declare -xr HTML_WEBFONT_TEXT=./extras/html/fonts/oxygen/oxygen-Regular.ttf
+declare -xr HTML_WEBFONT_CODE=./extras/html/fonts/intelone-mono/intelone-mono-Regular.ttf
+declare -xr HTML_WEBFONT_HANDNOTES=./extras/html/fonts/khand/khand.ttf
+declare -xr SOURCE_HIGHLIGHT_CSS=./extras/html/source-highlight-styles/mono.css