site icon
This commit is contained in:
parent
062f344676
commit
2005f405e4
@ -34,7 +34,7 @@ kotlin.native.cacheKind.linuxX64=none
|
|||||||
# On this environment, the system JDK 21 installation lacks `jlink`, causing
|
# On this environment, the system JDK 21 installation lacks `jlink`, causing
|
||||||
# :lynglib:androidJdkImage to fail. Point Gradle to JDK 17 which includes `jlink`.
|
# :lynglib:androidJdkImage to fail. Point Gradle to JDK 17 which includes `jlink`.
|
||||||
# This affects only the JDK Gradle runs with; Kotlin/JVM target remains compatible.
|
# This affects only the JDK Gradle runs with; Kotlin/JVM target remains compatible.
|
||||||
org.gradle.java.home=/usr/lib/jvm/java-17-openjdk-amd64
|
#org.gradle.java.home=/usr/lib/jvm/java-17-openjdk-amd64
|
||||||
android.experimental.lint.migrateToK2=false
|
android.experimental.lint.migrateToK2=false
|
||||||
android.lint.useK2Uast=false
|
android.lint.useK2Uast=false
|
||||||
kotlin.mpp.applyDefaultHierarchyTemplate=true
|
kotlin.mpp.applyDefaultHierarchyTemplate=true
|
||||||
15
site/src/jsMain/resources/icons/lyng-favicon.svg
Normal file
15
site/src/jsMain/resources/icons/lyng-favicon.svg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Lyng favicon: scalable SVG that adapts to light/dark themes -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" aria-label="Lyng favicon">
|
||||||
|
<style>
|
||||||
|
:root { color-scheme: light dark; color: #000; }
|
||||||
|
@media (prefers-color-scheme: dark) { :root { color: #fff; } }
|
||||||
|
.mark { fill: currentColor; }
|
||||||
|
.math { font-family: 'STIX Two Math', 'Cambria Math', 'Times New Roman', serif; }
|
||||||
|
</style>
|
||||||
|
<g class="mark math">
|
||||||
|
<!-- Keep favicon legible: lambda with superscript y only -->
|
||||||
|
<text x="3" y="17" font-size="16" font-weight="700">λ</text>
|
||||||
|
<text x="11.2" y="8" font-size="9">y</text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 685 B |
13
site/src/jsMain/resources/icons/lyng-mark.svg
Normal file
13
site/src/jsMain/resources/icons/lyng-mark.svg
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" aria-label="Lyng mark: lambda with superscript y">
|
||||||
|
<style>
|
||||||
|
:root { color-scheme: light dark; color: #000; }
|
||||||
|
@media (prefers-color-scheme: dark) { :root { color: #fff; } }
|
||||||
|
.mark { fill: currentColor; }
|
||||||
|
.math { font-family: 'STIX Two Math', 'Cambria Math', 'Times New Roman', serif; }
|
||||||
|
</style>
|
||||||
|
<g class="mark math">
|
||||||
|
<text x="3" y="17" font-size="16" font-weight="700">λ</text>
|
||||||
|
<text x="11.2" y="8" font-size="9">y</text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 574 B |
@ -21,6 +21,8 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Lyng language</title>
|
<title>Lyng language</title>
|
||||||
|
<!-- Site favicon (SVG, adapts to light/dark) -->
|
||||||
|
<link rel="icon" type="image/svg+xml" href="icons/lyng-favicon.svg" />
|
||||||
<!-- GitHub Markdown CSS (light and dark). We toggle these from the app. -->
|
<!-- GitHub Markdown CSS (light and dark). We toggle these from the app. -->
|
||||||
<link
|
<link
|
||||||
id="md-light"
|
id="md-light"
|
||||||
@ -189,7 +191,15 @@
|
|||||||
<nav class="navbar navbar-expand-lg bg-body-tertiary fixed-top border-bottom" role="navigation" aria-label="Primary">
|
<nav class="navbar navbar-expand-lg bg-body-tertiary fixed-top border-bottom" role="navigation" aria-label="Primary">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<a class="navbar-brand d-flex align-items-center gap-2" href="#">
|
<a class="navbar-brand d-flex align-items-center gap-2" href="#">
|
||||||
<i class="bi bi-braces-asterisk"></i>
|
<!-- Inline SVG brand icon: λ with superscript y and subscript ng. Uses currentColor to match theme. -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" role="img" aria-hidden="true">
|
||||||
|
<g fill="currentColor" color="inherit" font-family="'STIX Two Math', 'Cambria Math', 'Times New Roman', serif">
|
||||||
|
<!-- Main lambda -->
|
||||||
|
<text x="3" y="17" font-size="16" font-weight="700">λ</text>
|
||||||
|
<!-- Superscript y -->
|
||||||
|
<text x="11.2" y="8" font-size="10">y</text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
Lyng
|
Lyng
|
||||||
</a>
|
</a>
|
||||||
<button
|
<button
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user