Adopt the v2 "faceted glow" logo package, with the wordmark outlined
Swaps every brand asset the web UI imports for the v2 package: faceted stones with per-stone gradients and an ambient glow, replacing v1's flat four-colour paths. Raster favicons (16/32/48/180/512) are the package's own renders at the sizes already referenced, so the layout head is unchanged. Two things the swap needed beyond copying files in: - v2 ships no light-background stacked lockup, but the landing page picks one on theme. Derived it from the stacked-dark file the same way the package derives its own horizontal-light variant: same stone geometry and gradients, glow dropped, wordmark on light-surface ink/accent. - The stacked lockup is 360x320, no longer square; the landing page hard set an 11rem square, which stretched the wordmark. Height is auto now. The wordmark is outlined rather than left as live text. Upstream sets it in JetBrains Mono, but these load via <img src> and are inlined as data URIs, and an <img>-loaded SVG cannot reach the page's @font-face rules -- so neither JetBrains Mono nor our self-hosted Overpass Mono applied and the wordmark rendered in each visitor's default monospace, changing shape by platform. web/scripts/outline-wordmark.py converts every <text> to paths set in Overpass Mono Bold, the font the app already ships, so the lockup is pixel-stable and agrees with the UI's own type. Re-run it after refreshing the package, which will ship live <text> again. The four lockups now exceed Vite's 4KB inline threshold and ship as separate hashed immutable assets instead of data URIs duplicated across chunks. Unused package variants (icons, wordmarks, hero) are carried for completeness and imported nowhere, so they are not bundled.
@@ -0,0 +1,148 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Convert the <text> in the brand lockups to <path> outlines.
|
||||
|
||||
Why: the lockups in src/lib/assets are loaded via <img src> (and inlined as
|
||||
data URIs at build time). An <img>-loaded SVG is an isolated document -- it
|
||||
cannot reach the page's @font-face rules, so the app's self-hosted Overpass
|
||||
Mono never applies to a <text> element inside one. The wordmark therefore
|
||||
rendered in whatever each visitor's default monospace happened to be, and
|
||||
changed shape by platform. Outlining against the font we already ship makes
|
||||
it pixel-stable everywhere and matches the product's own typography.
|
||||
|
||||
Re-run this after refreshing the logo package from upstream (upstream ships
|
||||
live <text>). Idempotent: files with no <text> left are skipped.
|
||||
|
||||
python3 web/scripts/outline-wordmark.py
|
||||
|
||||
Only <text> is rewritten; every other byte of each file is left alone.
|
||||
"""
|
||||
|
||||
import re
|
||||
import sys
|
||||
from pathlib import Path
|
||||
from xml.dom import minidom
|
||||
|
||||
from fontTools.pens.svgPathPen import SVGPathPen
|
||||
from fontTools.pens.transformPen import TransformPen
|
||||
from fontTools.ttLib import TTFont
|
||||
from fontTools.varLib import instancer
|
||||
|
||||
ROOT = Path(__file__).resolve().parent.parent
|
||||
FONT = ROOT / "static/fonts/overpass-mono-variable.woff2"
|
||||
ASSETS = ROOT / "src/lib/assets"
|
||||
|
||||
# Every lockup sets font-weight 700; the variable font defaults to 300.
|
||||
WEIGHT = 700
|
||||
|
||||
TEXT_RE = re.compile(r"[ \t]*<text\b.*?</text>\s*?\n", re.DOTALL)
|
||||
|
||||
|
||||
def ntos(v):
|
||||
"""Two decimals is ~0.005px at the largest size any lockup is drawn at.
|
||||
|
||||
The default str() emits full float repr (15.264000000000001), which more
|
||||
than doubles the path data for no visible gain -- and these files ship
|
||||
inlined in the bundle.
|
||||
"""
|
||||
return f"{v:.2f}".rstrip("0").rstrip(".") or "0"
|
||||
|
||||
|
||||
def load_glyphset():
|
||||
font = TTFont(FONT)
|
||||
font = instancer.instantiateVariableFont(font, {"wght": WEIGHT})
|
||||
return font.getGlyphSet(), font.getBestCmap(), font["hmtx"], font["head"].unitsPerEm
|
||||
|
||||
|
||||
def runs_of(node):
|
||||
"""Flatten a <text> into (string, fill-override) runs, in document order.
|
||||
|
||||
Handles the one nesting the lockups use: bare text plus <tspan fill=...>.
|
||||
"""
|
||||
out = []
|
||||
for child in node.childNodes:
|
||||
if child.nodeType == child.TEXT_NODE:
|
||||
if child.data:
|
||||
out.append((child.data, None))
|
||||
elif child.nodeType == child.ELEMENT_NODE and child.localName == "tspan":
|
||||
text = "".join(c.data for c in child.childNodes if c.nodeType == c.TEXT_NODE)
|
||||
out.append((text, child.getAttribute("fill") or None))
|
||||
return [(t, f) for t, f in out if t]
|
||||
|
||||
|
||||
def outline(gs, cmap, hmtx, upem, runs, x, y, size, spacing, anchor):
|
||||
"""Return [(fill, path-d)], laying runs out left to right from the anchor."""
|
||||
scale = size / upem
|
||||
advances = [hmtx[cmap[ord(c)]][0] * scale for t, _ in runs for c in t]
|
||||
n = len(advances)
|
||||
# Trailing letter-spacing is excluded: it is not ink, and including it
|
||||
# would bias a centred lockup half a unit to the left.
|
||||
width = sum(advances) + spacing * (n - 1) if n else 0.0
|
||||
|
||||
if anchor == "middle":
|
||||
cursor = x - width / 2
|
||||
elif anchor == "end":
|
||||
cursor = x - width
|
||||
else:
|
||||
cursor = x
|
||||
|
||||
paths = []
|
||||
for text, fill in runs:
|
||||
pen = SVGPathPen(gs, ntos=ntos)
|
||||
for ch in text:
|
||||
gname = cmap[ord(ch)]
|
||||
# y flips: font units are y-up, SVG user space is y-down.
|
||||
gs[gname].draw(TransformPen(pen, (scale, 0, 0, -scale, cursor, y)))
|
||||
cursor += hmtx[gname][0] * scale + spacing
|
||||
paths.append((fill, pen.getCommands()))
|
||||
return paths
|
||||
|
||||
|
||||
def convert(path, gs, cmap, hmtx, upem):
|
||||
src = path.read_text()
|
||||
blocks = TEXT_RE.findall(src)
|
||||
if not blocks:
|
||||
return False
|
||||
|
||||
out = src
|
||||
for block in blocks:
|
||||
node = minidom.parseString(block.strip()).documentElement
|
||||
indent = re.match(r"[ \t]*", block).group(0)
|
||||
|
||||
runs = runs_of(node)
|
||||
base_fill = node.getAttribute("fill") or "#000"
|
||||
paths = outline(
|
||||
gs, cmap, hmtx, upem, runs,
|
||||
x=float(node.getAttribute("x") or 0),
|
||||
y=float(node.getAttribute("y") or 0),
|
||||
size=float(node.getAttribute("font-size")),
|
||||
spacing=float(node.getAttribute("letter-spacing") or 0),
|
||||
anchor=node.getAttribute("text-anchor") or "start",
|
||||
)
|
||||
|
||||
rendered = "".join(
|
||||
f'{indent}<path fill="{fill or base_fill}" d="{d}"/>\n'
|
||||
for fill, d in paths if d
|
||||
)
|
||||
out = out.replace(block, rendered, 1)
|
||||
|
||||
path.write_text(out)
|
||||
return True
|
||||
|
||||
|
||||
def main():
|
||||
if not FONT.exists():
|
||||
sys.exit(f"font not found: {FONT}")
|
||||
gs, cmap, hmtx, upem = load_glyphset()
|
||||
|
||||
touched = 0
|
||||
for svg in sorted(ASSETS.glob("*.svg")):
|
||||
if convert(svg, gs, cmap, hmtx, upem):
|
||||
print(f"outlined {svg.relative_to(ROOT)}")
|
||||
touched += 1
|
||||
else:
|
||||
print(f"no <text> {svg.relative_to(ROOT)}")
|
||||
print(f"\n{touched} file(s) rewritten")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,70 @@
|
||||
# Brand assets
|
||||
|
||||
Cairn OBS logo package **v2 ("faceted glow")**. Source package:
|
||||
`cairn-obs-logo-v2`, copied in here and renamed to this directory's
|
||||
convention (the `cairn-obs-` prefix is dropped -- the directory already
|
||||
says whose brand it is).
|
||||
|
||||
Everything is a plain `<polygon>` over four shared gradient stops, so a
|
||||
re-theme is a find/replace on the stops rather than a redraw.
|
||||
|
||||
## What the app actually uses
|
||||
|
||||
| File | Used by |
|
||||
| --- | --- |
|
||||
| `favicon.svg` | `routes/+layout.svelte` (`<link rel="icon">`) |
|
||||
| `logo-horizontal-dark.svg` / `-light.svg` | `components/NavSidebar.svelte`, picked on theme |
|
||||
| `logo-stacked-dark.svg` / `-light.svg` | `routes/+page.svelte` (landing), picked on theme |
|
||||
|
||||
The rest are carried for completeness and are **not** imported anywhere,
|
||||
so Vite does not emit them into the bundle:
|
||||
|
||||
- `icon-glow.svg` / `icon-flat.svg` -- mark only, with and without the
|
||||
ambient glow. Use `-flat` anywhere an SVG filter gets stripped.
|
||||
- `icon-mono-white.svg` / `icon-mono-black.svg` -- single-colour
|
||||
silhouettes.
|
||||
- `wordmark-dark.svg` / `wordmark-light.svg` -- text only.
|
||||
- `hero-grid.svg` -- 800x480 banner scene (social card, splash).
|
||||
|
||||
Raster favicons live in `web/static/icons/` (16/32/48/180/512), served
|
||||
from `/icons/` and referenced by absolute path in the layout head.
|
||||
|
||||
## Two things to know before editing
|
||||
|
||||
**`logo-stacked-light.svg` is derived, not vendored.** The v2 package
|
||||
ships no light-background stacked lockup, but the landing page needs one
|
||||
for light theme. It is the stacked-dark file with the treatment the
|
||||
package itself applies to its horizontal pair: same stone geometry and
|
||||
gradients, ambient glow dropped (it reads as haze on white), wordmark
|
||||
switched to the light-surface ink and accent (`#111315` / `#E6690E`).
|
||||
If the package is refreshed, re-derive it rather than assuming an
|
||||
upstream file appeared.
|
||||
|
||||
**The wordmark is outlined, not live text.** Upstream ships the lockups
|
||||
with a `<text>` element set in `'JetBrains Mono','Fira Code',ui-monospace,
|
||||
monospace`. That does not survive the way this app loads them: they go
|
||||
through `<img src>` (and get inlined as data URIs at build time), and an
|
||||
`<img>`-loaded SVG is an isolated document that cannot reach the page's
|
||||
`@font-face` rules. Neither our self-hosted Overpass Mono nor JetBrains
|
||||
Mono applied, so the wordmark fell back to each visitor's default
|
||||
monospace and changed shape by platform.
|
||||
|
||||
Every `<text>` has therefore been converted to `<path>` outlines set in
|
||||
**Overpass Mono Bold** -- the font the app already ships and uses for its
|
||||
own monospace UI, so the lockup and the interface now agree. The
|
||||
conversion is scripted:
|
||||
|
||||
python3 web/scripts/outline-wordmark.py
|
||||
|
||||
Re-run it after refreshing the package from upstream (upstream will ship
|
||||
live `<text>` again). It rewrites only `<text>` elements, leaves every
|
||||
other byte alone, and skips files that have none, so it is safe to re-run.
|
||||
Editing the wordmark's copy or spacing now means editing the upstream
|
||||
`<text>` and re-running the script -- not hand-editing path data.
|
||||
|
||||
## Aspect ratios
|
||||
|
||||
Changed from v1 -- constrain one axis and leave the other `auto`:
|
||||
|
||||
- horizontal lockups: 640x160 (v1 was 600x140)
|
||||
- stacked lockups: 360x320, **not square** (v1 was 360x360)
|
||||
@@ -1,9 +1,20 @@
|
||||
<svg width="64" height="64" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Favicon: simplified 3-stone mark on terminal-dark rounded square -->
|
||||
<rect x="0" y="0" width="64" height="64" rx="14" fill="#0D1117"/>
|
||||
<g>
|
||||
<path d="M14,50 L10,45 L13,40 L22,37 L34,40 L44,37 L53,41 L50,47 L40,51 L26,48 Z" fill="#FF8A00"/>
|
||||
<path d="M20,35 L16,30 L19,25 L28,23 L36,26 L44,23 L47,28 L43,34 L32,36 L24,33 Z" fill="#FF9D2E"/>
|
||||
<path d="M24,21 L21,16 L25,12 L32,11 L38,13 L41,17 L38,21 L31,22 L27,20 Z" fill="#FFB157"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="fs1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="fs2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="fs3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<rect x="0" y="0" width="64" height="64" rx="14" fill="#0D0B10"/>
|
||||
<polygon points="12,42 34,40 48,45 46,52 32,56 16,55 9,50 10,44" fill="url(#fs1)"/>
|
||||
<polygon points="18,30 38,32 46,35 44,42 34,45 20,44 14,39 15,33" fill="url(#fs2)"/>
|
||||
<polygon points="24,15 34,11 40,20 37,30 29,33 22,29 20,20" fill="url(#fs3)"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 550 B After Width: | Height: | Size: 948 B |
@@ -0,0 +1,54 @@
|
||||
<svg width="800" height="480" viewBox="0 0 800 480" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="s1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#B5650B"/>
|
||||
<stop offset="1" stop-color="#8A4A06"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s4" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="glow" cx="0.5" cy="0.5" r="0.55">
|
||||
<stop offset="0" stop-color="#FF9A2E" stop-opacity="0.42"/>
|
||||
<stop offset="0.55" stop-color="#FF9A2E" stop-opacity="0.12"/>
|
||||
<stop offset="1" stop-color="#FF9A2E" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
|
||||
<feGaussianBlur stdDeviation="30"/>
|
||||
</filter>
|
||||
<pattern id="grid" width="32" height="32" patternUnits="userSpaceOnUse">
|
||||
<path d="M 32 0 L 0 0 0 32" fill="none" stroke="#1B2233" stroke-width="1"/>
|
||||
</pattern>
|
||||
<radialGradient id="vignette" cx="0.5" cy="0.5" r="0.75">
|
||||
<stop offset="0" stop-color="#0A0B10" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#0A0B10" stop-opacity="0.9"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
|
||||
<!-- background -->
|
||||
<rect width="800" height="480" fill="#0A0B10"/>
|
||||
<rect width="800" height="480" fill="url(#grid)"/>
|
||||
<rect width="800" height="480" fill="url(#vignette)"/>
|
||||
|
||||
<!-- ambient glow behind stack -->
|
||||
<ellipse cx="400" cy="270" rx="260" ry="200" fill="url(#glow)" filter="url(#blur)"/>
|
||||
|
||||
<!-- stone stack, scaled/centered -->
|
||||
<g transform="translate(200,60) scale(1.0)">
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306" fill="url(#s1)"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260" fill="url(#s2)"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214" fill="url(#s3)"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156" fill="url(#s4)"/>
|
||||
</g>
|
||||
|
||||
<!-- baseline ground shadow, echoes reference image's floor line -->
|
||||
<line x1="0" y1="418" x2="800" y2="418" stroke="#1B2233" stroke-width="1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,25 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="s1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#B5650B"/>
|
||||
<stop offset="1" stop-color="#8A4A06"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s4" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306" fill="url(#s1)"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260" fill="url(#s2)"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214" fill="url(#s3)"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156" fill="url(#s4)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,47 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="s1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#B5650B"/>
|
||||
<stop offset="1" stop-color="#8A4A06"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s4" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="glow" cx="0.5" cy="0.45" r="0.55">
|
||||
<stop offset="0" stop-color="#FF9A2E" stop-opacity="0.4"/>
|
||||
<stop offset="0.55" stop-color="#FF9A2E" stop-opacity="0.12"/>
|
||||
<stop offset="1" stop-color="#FF9A2E" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
|
||||
<feGaussianBlur stdDeviation="26"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<!-- ambient glow -->
|
||||
<ellipse cx="200" cy="230" rx="170" ry="150" fill="url(#glow)" filter="url(#blur)"/>
|
||||
|
||||
<!-- stone 1: bottom -->
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306"
|
||||
fill="url(#s1)"/>
|
||||
|
||||
<!-- stone 2 -->
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260"
|
||||
fill="url(#s2)"/>
|
||||
|
||||
<!-- stone 3 -->
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214"
|
||||
fill="url(#s3)"/>
|
||||
|
||||
<!-- stone 4: top -->
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156"
|
||||
fill="url(#s4)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="#111315">
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 459 B |
@@ -0,0 +1,8 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="#FFFFFF">
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 459 B |
@@ -1,12 +1,39 @@
|
||||
<svg width="600" height="140" viewBox="0 0 600 140" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Horizontal lockup for dark backgrounds -->
|
||||
<g transform="translate(20,10) scale(0.6)">
|
||||
<path d="M32,184 L20,172 L26,155 L18,146 L46,138 L82,144 L112,134 L150,140 L176,150 L182,168 L170,184 L142,192 L100,182 L64,190 Z" fill="#E6690E"/>
|
||||
<path d="M54,144 L42,134 L50,118 L44,108 L68,100 L96,106 L118,98 L142,106 L156,116 L150,132 L160,142 L132,150 L100,140 L70,148 Z" fill="#FF8A00"/>
|
||||
<path d="M68,106 L58,96 L64,82 L60,72 L80,66 L100,72 L116,64 L132,74 L138,86 L130,98 L138,106 L112,112 L88,104 L72,110 Z" fill="#FF9D2E"/>
|
||||
<path d="M80,70 L72,60 L78,48 L74,40 L92,36 L106,42 L116,34 L126,44 L124,56 L130,66 L108,72 L92,64 L82,70 Z" fill="#FFB157"/>
|
||||
<svg width="640" height="160" viewBox="0 0 640 160" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="s1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#B5650B"/>
|
||||
<stop offset="1" stop-color="#8A4A06"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s4" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="glow" cx="0.5" cy="0.5" r="0.6">
|
||||
<stop offset="0" stop-color="#FF9A2E" stop-opacity="0.4"/>
|
||||
<stop offset="1" stop-color="#FF9A2E" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
|
||||
<feGaussianBlur stdDeviation="14"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<g transform="translate(7.5,-39) scale(0.5)">
|
||||
<ellipse cx="200" cy="230" rx="170" ry="150" fill="url(#glow)" filter="url(#blur)"/>
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306" fill="url(#s1)"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260" fill="url(#s2)"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214" fill="url(#s3)"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156" fill="url(#s4)"/>
|
||||
</g>
|
||||
<text x="160" y="87" font-family="'JetBrains Mono','Fira Code',ui-monospace,monospace" font-size="48" font-weight="700" fill="#F2F2F2" letter-spacing="-1">cairn</text>
|
||||
<text x="342" y="87" font-family="'JetBrains Mono','Fira Code',ui-monospace,monospace" font-size="48" font-weight="700" fill="#FF8A00" letter-spacing="1"> obs</text>
|
||||
<rect x="540" y="49" width="14" height="38" fill="#FF8A00"/>
|
||||
|
||||
<path fill="#F2F2F2" d="M195.26 97.58Q190.13 97.58 187.08 94.19Q184.03 90.81 184.03 84.76Q184.03 80.75 185.45 77.87Q186.86 74.99 189.41 73.44Q191.95 71.9 195.36 71.9Q199.18 71.9 201.73 73.52Q204.29 75.14 205.44 78.57L200.21 80.34Q199.68 78.93 198.52 78.03Q197.35 77.13 195.41 77.13Q192.65 77.13 191.15 79.22Q189.65 81.3 189.65 84.76Q189.65 88.24 191.15 90.27Q192.65 92.3 195.31 92.3Q197.3 92.3 198.54 91.36Q199.78 90.42 200.35 88.7L205.58 90.33Q204.5 93.88 201.94 95.73Q199.37 97.58 195.26 97.58ZM221.48 97.58Q218.91 97.58 216.86 96.66Q214.81 95.75 213.61 93.94Q212.41 92.13 212.41 89.42Q212.41 86.58 213.85 84.8Q215.29 83.01 217.53 82.16Q219.78 81.3 222.2 81.3Q224.07 81.3 225.54 81.63Q227 81.95 228.3 82.6V81.16Q228.3 79.53 227.72 78.56Q227.14 77.58 226.05 77.16Q224.96 76.74 223.45 76.74Q221.41 76.74 219.4 77.42Q217.4 78.09 215.67 79.24L213.99 74.73Q215.77 73.6 218.36 72.75Q220.95 71.9 223.93 71.9Q225.56 71.9 227.28 72.22Q228.99 72.54 230.44 73.49Q231.9 74.44 232.78 76.28Q233.67 78.11 233.67 81.11V97H228.3V95.08Q227.29 96.04 225.64 96.81Q224 97.58 221.48 97.58ZM222.49 92.73Q224.5 92.73 225.93 91.98Q227.36 91.24 228.3 90.28V87.11Q227.29 86.61 225.93 86.31Q224.58 86.01 223.06 86.01Q220.95 86.01 219.34 86.81Q217.74 87.62 217.74 89.42Q217.74 90.88 218.98 91.8Q220.23 92.73 222.49 92.73ZM249.38 97V72.47H254.9V97ZM242.61 97V92.15H261.66V97ZM242.61 77.32V72.47H252.98V77.32ZM252.1 69.06Q250.74 69.06 249.8 68.09Q248.85 67.12 248.85 65.75Q248.85 64.38 249.8 63.44Q250.74 62.49 252.1 62.49Q253.53 62.49 254.48 63.44Q255.42 64.38 255.42 65.75Q255.42 67.12 254.48 68.09Q253.53 69.06 252.1 69.06ZM268.15 97V92.15H273.34V77.32H268.15V72.47H278.47V77.9L278.18 77.18Q278.64 75.66 279.88 74.46Q281.11 73.26 282.95 72.58Q284.78 71.9 287.02 71.9Q288.86 71.9 290.28 72.29Q291.7 72.69 292.63 73.19V82.26H287.26V74.82L289.61 77.22Q288.89 77.1 288.28 77.04Q287.66 76.98 287.26 76.98Q284.23 76.98 282.38 77.86Q280.54 78.74 279.7 80.37Q278.86 82 278.86 84.23V92.15H285.72V97ZM298.3 97V72.47H303.82V78.28L303.1 76.65Q303.1 75.57 304.14 74.48Q305.17 73.38 306.91 72.64Q308.65 71.9 310.78 71.9Q313.23 71.9 315.3 72.86Q317.36 73.82 318.61 76.04Q319.86 78.26 319.86 82.02V97H314.34V83.18Q314.34 79.79 312.84 78.46Q311.34 77.13 309.25 77.13Q307.78 77.13 306.55 77.67Q305.31 78.21 304.57 79.5Q303.82 80.8 303.82 83.08V97Z"/>
|
||||
<path fill="#FF8A00" d="M407.35 97.58Q403.73 97.58 401.09 96.02Q398.45 94.46 397.02 91.59Q395.59 88.72 395.59 84.76Q395.59 80.85 397.02 77.96Q398.45 75.06 401.09 73.48Q403.73 71.9 407.35 71.9Q411 71.9 413.64 73.47Q416.28 75.04 417.7 77.93Q419.11 80.82 419.11 84.76Q419.11 88.7 417.7 91.58Q416.28 94.46 413.64 96.02Q411 97.58 407.35 97.58ZM407.35 92.3Q410.38 92.3 411.96 90.23Q413.54 88.17 413.54 84.76Q413.54 81.33 411.98 79.23Q410.42 77.13 407.35 77.13Q404.38 77.13 402.77 79.22Q401.16 81.3 401.16 84.76Q401.16 88.17 402.77 90.23Q404.38 92.3 407.35 92.3ZM439.12 97.58Q436.94 97.58 435.41 96.9Q433.89 96.23 432.88 95.13V97H427.36V64.89L432.88 62.34V74.39Q433.89 73.26 435.65 72.58Q437.42 71.9 439.22 71.9Q442.24 71.9 444.58 73.44Q446.92 74.99 448.25 77.86Q449.58 80.73 449.58 84.71Q449.58 90.93 446.76 94.25Q443.94 97.58 439.12 97.58ZM438.26 92.3Q441.18 92.3 442.6 90.24Q444.02 88.19 444.02 84.71Q444.02 81.04 442.56 79.08Q441.11 77.13 438.26 77.13Q436.94 77.13 435.87 77.51Q434.8 77.9 434.04 78.46Q433.29 79.02 432.88 79.58V89.9Q433.74 91.05 435.1 91.67Q436.46 92.3 438.26 92.3ZM468.63 97.58Q465.44 97.58 462.82 96.36Q460.21 95.15 458.65 93.21L462.3 89.9Q463.3 90.9 464.96 91.84Q466.62 92.78 468.92 92.78Q470.58 92.78 471.67 92.22Q472.76 91.67 472.76 90.38Q472.76 89.56 472.09 88.97Q471.42 88.38 470.12 87.83Q468.82 87.28 466.95 86.58Q464.62 85.72 462.86 84.71Q461.1 83.7 460.11 82.25Q459.13 80.8 459.13 78.62Q459.13 76.48 460.39 74.98Q461.65 73.48 463.8 72.69Q465.94 71.9 468.58 71.9Q471.75 71.9 474.03 73.02Q476.31 74.15 477.75 75.78L474.01 78.86Q473.07 78.02 471.66 77.36Q470.24 76.7 468.15 76.7Q466.57 76.7 465.54 77.18Q464.5 77.66 464.5 78.71Q464.5 79.46 465.21 80.02Q465.92 80.58 467.12 81.09Q468.32 81.59 469.78 82.12Q471.9 82.89 473.8 83.85Q475.71 84.81 476.92 86.33Q478.14 87.86 478.14 90.33Q478.14 93.78 475.53 95.68Q472.93 97.58 468.63 97.58Z"/>
|
||||
<rect x="560" y="59" width="14" height="38" fill="#FF8A00"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 5.8 KiB |
@@ -1,12 +1,31 @@
|
||||
<svg width="600" height="140" viewBox="0 0 600 140" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Horizontal lockup for light backgrounds -->
|
||||
<g transform="translate(20,10) scale(0.6)">
|
||||
<path d="M32,184 L20,172 L26,155 L18,146 L46,138 L82,144 L112,134 L150,140 L176,150 L182,168 L170,184 L142,192 L100,182 L64,190 Z" fill="#E6690E"/>
|
||||
<path d="M54,144 L42,134 L50,118 L44,108 L68,100 L96,106 L118,98 L142,106 L156,116 L150,132 L160,142 L132,150 L100,140 L70,148 Z" fill="#FF8A00"/>
|
||||
<path d="M68,106 L58,96 L64,82 L60,72 L80,66 L100,72 L116,64 L132,74 L138,86 L130,98 L138,106 L112,112 L88,104 L72,110 Z" fill="#FF9D2E"/>
|
||||
<path d="M80,70 L72,60 L78,48 L74,40 L92,36 L106,42 L116,34 L126,44 L124,56 L130,66 L108,72 L92,64 L82,70 Z" fill="#FFB157"/>
|
||||
<svg width="640" height="160" viewBox="0 0 640 160" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="s1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#B5650B"/>
|
||||
<stop offset="1" stop-color="#8A4A06"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s4" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<g transform="translate(7.5,-39) scale(0.5)">
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306" fill="url(#s1)"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260" fill="url(#s2)"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214" fill="url(#s3)"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156" fill="url(#s4)"/>
|
||||
</g>
|
||||
<text x="160" y="87" font-family="'JetBrains Mono','Fira Code',ui-monospace,monospace" font-size="48" font-weight="700" fill="#111315" letter-spacing="-1">cairn</text>
|
||||
<text x="342" y="87" font-family="'JetBrains Mono','Fira Code',ui-monospace,monospace" font-size="48" font-weight="700" fill="#E6690E" letter-spacing="1"> obs</text>
|
||||
<rect x="540" y="49" width="14" height="38" fill="#E6690E"/>
|
||||
|
||||
<path fill="#111315" d="M195.26 97.58Q190.13 97.58 187.08 94.19Q184.03 90.81 184.03 84.76Q184.03 80.75 185.45 77.87Q186.86 74.99 189.41 73.44Q191.95 71.9 195.36 71.9Q199.18 71.9 201.73 73.52Q204.29 75.14 205.44 78.57L200.21 80.34Q199.68 78.93 198.52 78.03Q197.35 77.13 195.41 77.13Q192.65 77.13 191.15 79.22Q189.65 81.3 189.65 84.76Q189.65 88.24 191.15 90.27Q192.65 92.3 195.31 92.3Q197.3 92.3 198.54 91.36Q199.78 90.42 200.35 88.7L205.58 90.33Q204.5 93.88 201.94 95.73Q199.37 97.58 195.26 97.58ZM221.48 97.58Q218.91 97.58 216.86 96.66Q214.81 95.75 213.61 93.94Q212.41 92.13 212.41 89.42Q212.41 86.58 213.85 84.8Q215.29 83.01 217.53 82.16Q219.78 81.3 222.2 81.3Q224.07 81.3 225.54 81.63Q227 81.95 228.3 82.6V81.16Q228.3 79.53 227.72 78.56Q227.14 77.58 226.05 77.16Q224.96 76.74 223.45 76.74Q221.41 76.74 219.4 77.42Q217.4 78.09 215.67 79.24L213.99 74.73Q215.77 73.6 218.36 72.75Q220.95 71.9 223.93 71.9Q225.56 71.9 227.28 72.22Q228.99 72.54 230.44 73.49Q231.9 74.44 232.78 76.28Q233.67 78.11 233.67 81.11V97H228.3V95.08Q227.29 96.04 225.64 96.81Q224 97.58 221.48 97.58ZM222.49 92.73Q224.5 92.73 225.93 91.98Q227.36 91.24 228.3 90.28V87.11Q227.29 86.61 225.93 86.31Q224.58 86.01 223.06 86.01Q220.95 86.01 219.34 86.81Q217.74 87.62 217.74 89.42Q217.74 90.88 218.98 91.8Q220.23 92.73 222.49 92.73ZM249.38 97V72.47H254.9V97ZM242.61 97V92.15H261.66V97ZM242.61 77.32V72.47H252.98V77.32ZM252.1 69.06Q250.74 69.06 249.8 68.09Q248.85 67.12 248.85 65.75Q248.85 64.38 249.8 63.44Q250.74 62.49 252.1 62.49Q253.53 62.49 254.48 63.44Q255.42 64.38 255.42 65.75Q255.42 67.12 254.48 68.09Q253.53 69.06 252.1 69.06ZM268.15 97V92.15H273.34V77.32H268.15V72.47H278.47V77.9L278.18 77.18Q278.64 75.66 279.88 74.46Q281.11 73.26 282.95 72.58Q284.78 71.9 287.02 71.9Q288.86 71.9 290.28 72.29Q291.7 72.69 292.63 73.19V82.26H287.26V74.82L289.61 77.22Q288.89 77.1 288.28 77.04Q287.66 76.98 287.26 76.98Q284.23 76.98 282.38 77.86Q280.54 78.74 279.7 80.37Q278.86 82 278.86 84.23V92.15H285.72V97ZM298.3 97V72.47H303.82V78.28L303.1 76.65Q303.1 75.57 304.14 74.48Q305.17 73.38 306.91 72.64Q308.65 71.9 310.78 71.9Q313.23 71.9 315.3 72.86Q317.36 73.82 318.61 76.04Q319.86 78.26 319.86 82.02V97H314.34V83.18Q314.34 79.79 312.84 78.46Q311.34 77.13 309.25 77.13Q307.78 77.13 306.55 77.67Q305.31 78.21 304.57 79.5Q303.82 80.8 303.82 83.08V97Z"/>
|
||||
<path fill="#E6690E" d="M407.35 97.58Q403.73 97.58 401.09 96.02Q398.45 94.46 397.02 91.59Q395.59 88.72 395.59 84.76Q395.59 80.85 397.02 77.96Q398.45 75.06 401.09 73.48Q403.73 71.9 407.35 71.9Q411 71.9 413.64 73.47Q416.28 75.04 417.7 77.93Q419.11 80.82 419.11 84.76Q419.11 88.7 417.7 91.58Q416.28 94.46 413.64 96.02Q411 97.58 407.35 97.58ZM407.35 92.3Q410.38 92.3 411.96 90.23Q413.54 88.17 413.54 84.76Q413.54 81.33 411.98 79.23Q410.42 77.13 407.35 77.13Q404.38 77.13 402.77 79.22Q401.16 81.3 401.16 84.76Q401.16 88.17 402.77 90.23Q404.38 92.3 407.35 92.3ZM439.12 97.58Q436.94 97.58 435.41 96.9Q433.89 96.23 432.88 95.13V97H427.36V64.89L432.88 62.34V74.39Q433.89 73.26 435.65 72.58Q437.42 71.9 439.22 71.9Q442.24 71.9 444.58 73.44Q446.92 74.99 448.25 77.86Q449.58 80.73 449.58 84.71Q449.58 90.93 446.76 94.25Q443.94 97.58 439.12 97.58ZM438.26 92.3Q441.18 92.3 442.6 90.24Q444.02 88.19 444.02 84.71Q444.02 81.04 442.56 79.08Q441.11 77.13 438.26 77.13Q436.94 77.13 435.87 77.51Q434.8 77.9 434.04 78.46Q433.29 79.02 432.88 79.58V89.9Q433.74 91.05 435.1 91.67Q436.46 92.3 438.26 92.3ZM468.63 97.58Q465.44 97.58 462.82 96.36Q460.21 95.15 458.65 93.21L462.3 89.9Q463.3 90.9 464.96 91.84Q466.62 92.78 468.92 92.78Q470.58 92.78 471.67 92.22Q472.76 91.67 472.76 90.38Q472.76 89.56 472.09 88.97Q471.42 88.38 470.12 87.83Q468.82 87.28 466.95 86.58Q464.62 85.72 462.86 84.71Q461.1 83.7 460.11 82.25Q459.13 80.8 459.13 78.62Q459.13 76.48 460.39 74.98Q461.65 73.48 463.8 72.69Q465.94 71.9 468.58 71.9Q471.75 71.9 474.03 73.02Q476.31 74.15 477.75 75.78L474.01 78.86Q473.07 78.02 471.66 77.36Q470.24 76.7 468.15 76.7Q466.57 76.7 465.54 77.18Q464.5 77.66 464.5 78.71Q464.5 79.46 465.21 80.02Q465.92 80.58 467.12 81.09Q468.32 81.59 469.78 82.12Q471.9 82.89 473.8 83.85Q475.71 84.81 476.92 86.33Q478.14 87.86 478.14 90.33Q478.14 93.78 475.53 95.68Q472.93 97.58 468.63 97.58Z"/>
|
||||
<rect x="560" y="59" width="14" height="38" fill="#E6690E"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 5.4 KiB |
@@ -1,10 +1,38 @@
|
||||
<svg width="360" height="360" viewBox="0 0 360 360" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Stacked lockup for dark backgrounds / square placements -->
|
||||
<g transform="translate(80,30) scale(1.0)">
|
||||
<path d="M32,184 L20,172 L26,155 L18,146 L46,138 L82,144 L112,134 L150,140 L176,150 L182,168 L170,184 L142,192 L100,182 L64,190 Z" fill="#E6690E"/>
|
||||
<path d="M54,144 L42,134 L50,118 L44,108 L68,100 L96,106 L118,98 L142,106 L156,116 L150,132 L160,142 L132,150 L100,140 L70,148 Z" fill="#FF8A00"/>
|
||||
<path d="M68,106 L58,96 L64,82 L60,72 L80,66 L100,72 L116,64 L132,74 L138,86 L130,98 L138,106 L112,112 L88,104 L72,110 Z" fill="#FF9D2E"/>
|
||||
<path d="M80,70 L72,60 L78,48 L74,40 L92,36 L106,42 L116,34 L126,44 L124,56 L130,66 L108,72 L92,64 L82,70 Z" fill="#FFB157"/>
|
||||
<svg width="360" height="320" viewBox="0 0 360 320" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="s1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#B5650B"/>
|
||||
<stop offset="1" stop-color="#8A4A06"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s4" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="glow" cx="0.5" cy="0.5" r="0.6">
|
||||
<stop offset="0" stop-color="#FF9A2E" stop-opacity="0.4"/>
|
||||
<stop offset="1" stop-color="#FF9A2E" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
|
||||
<feGaussianBlur stdDeviation="18"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<g transform="translate(48.75,-38.5) scale(0.75)">
|
||||
<ellipse cx="200" cy="230" rx="170" ry="150" fill="url(#glow)" filter="url(#blur)"/>
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306" fill="url(#s1)"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260" fill="url(#s2)"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214" fill="url(#s3)"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156" fill="url(#s4)"/>
|
||||
</g>
|
||||
<text x="180" y="290" font-family="'JetBrains Mono','Fira Code',ui-monospace,monospace" font-size="42" font-weight="700" fill="#F2F2F2" letter-spacing="-1" text-anchor="middle">cairn <tspan fill="#FF8A00">obs</tspan></text>
|
||||
|
||||
<path fill="#F2F2F2" d="M80.93 285.5Q76.44 285.5 73.77 282.54Q71.1 279.58 71.1 274.29Q71.1 270.78 72.34 268.26Q73.58 265.74 75.81 264.39Q78.03 263.03 81.02 263.03Q84.35 263.03 86.59 264.45Q88.83 265.87 89.84 268.87L85.26 270.43Q84.8 269.19 83.78 268.4Q82.76 267.61 81.06 267.61Q78.64 267.61 77.33 269.44Q76.02 271.27 76.02 274.29Q76.02 277.33 77.33 279.11Q78.64 280.88 80.97 280.88Q82.72 280.88 83.8 280.06Q84.88 279.25 85.38 277.73L89.96 279.16Q89.02 282.27 86.77 283.89Q84.52 285.5 80.93 285.5ZM103.75 285.5Q101.5 285.5 99.7 284.71Q97.91 283.91 96.86 282.32Q95.81 280.74 95.81 278.36Q95.81 275.89 97.07 274.32Q98.33 272.76 100.29 272.01Q102.25 271.27 104.38 271.27Q106.01 271.27 107.29 271.55Q108.58 271.83 109.71 272.4V271.14Q109.71 269.71 109.21 268.86Q108.7 268.01 107.75 267.64Q106.79 267.28 105.47 267.28Q103.68 267.28 101.93 267.86Q100.18 268.45 98.66 269.46L97.19 265.51Q98.75 264.52 101.02 263.78Q103.28 263.03 105.89 263.03Q107.32 263.03 108.82 263.32Q110.32 263.6 111.59 264.43Q112.86 265.26 113.64 266.87Q114.41 268.47 114.41 271.1V285H109.71V283.32Q108.83 284.16 107.39 284.83Q105.95 285.5 103.75 285.5ZM104.63 281.26Q106.39 281.26 107.64 280.61Q108.89 279.96 109.71 279.12V276.35Q108.83 275.91 107.64 275.64Q106.45 275.38 105.13 275.38Q103.28 275.38 101.88 276.09Q100.47 276.79 100.47 278.36Q100.47 279.64 101.56 280.45Q102.65 281.26 104.63 281.26ZM128.03 285V263.54H132.86V285ZM122.11 285V280.76H138.78V285ZM122.11 267.78V263.54H131.18V267.78ZM130.41 260.56Q129.23 260.56 128.4 259.71Q127.57 258.86 127.57 257.66Q127.57 256.46 128.4 255.63Q129.23 254.8 130.41 254.8Q131.66 254.8 132.49 255.63Q133.32 256.46 133.32 257.66Q133.32 258.86 132.49 259.71Q131.66 260.56 130.41 260.56ZM144.33 285V280.76H148.87V267.78H144.33V263.54H153.36V268.28L153.11 267.65Q153.51 266.33 154.59 265.28Q155.67 264.23 157.28 263.63Q158.89 263.03 160.84 263.03Q162.46 263.03 163.7 263.38Q164.94 263.73 165.75 264.17V272.11H161.05V265.6L163.11 267.7Q162.48 267.59 161.94 267.54Q161.41 267.49 161.05 267.49Q158.4 267.49 156.79 268.25Q155.17 269.02 154.44 270.45Q153.7 271.88 153.7 273.83V280.76H159.71V285ZM170.59 285V263.54H175.42V268.62L174.79 267.19Q174.79 266.25 175.7 265.29Q176.6 264.34 178.12 263.69Q179.64 263.03 181.51 263.03Q183.65 263.03 185.46 263.87Q187.27 264.71 188.36 266.66Q189.45 268.6 189.45 271.9V285H184.62V272.9Q184.62 269.94 183.31 268.78Q182 267.61 180.17 267.61Q178.89 267.61 177.81 268.08Q176.72 268.56 176.07 269.69Q175.42 270.82 175.42 272.82V285Z"/>
|
||||
<path fill="#FF8A00" d="M229.74 285.5Q226.57 285.5 224.26 284.14Q221.95 282.77 220.7 280.26Q219.45 277.75 219.45 274.29Q219.45 270.87 220.7 268.34Q221.95 265.81 224.26 264.42Q226.57 263.03 229.74 263.03Q232.94 263.03 235.25 264.41Q237.56 265.79 238.8 268.32Q240.03 270.85 240.03 274.29Q240.03 277.73 238.8 280.25Q237.56 282.77 235.25 284.14Q232.94 285.5 229.74 285.5ZM229.74 280.88Q232.39 280.88 233.78 279.08Q235.16 277.27 235.16 274.29Q235.16 271.29 233.8 269.45Q232.43 267.61 229.74 267.61Q227.14 267.61 225.73 269.44Q224.33 271.27 224.33 274.29Q224.33 277.27 225.73 279.08Q227.14 280.88 229.74 280.88ZM255.67 285.5Q253.76 285.5 252.42 284.92Q251.09 284.33 250.21 283.36V285H245.38V256.9L250.21 254.68V265.22Q251.09 264.23 252.63 263.63Q254.18 263.03 255.75 263.03Q258.4 263.03 260.44 264.39Q262.49 265.74 263.66 268.25Q264.82 270.76 264.82 274.25Q264.82 279.69 262.35 282.6Q259.89 285.5 255.67 285.5ZM254.91 280.88Q257.47 280.88 258.71 279.09Q259.95 277.29 259.95 274.25Q259.95 271.04 258.68 269.32Q257.41 267.61 254.91 267.61Q253.76 267.61 252.82 267.95Q251.89 268.28 251.22 268.78Q250.56 269.27 250.21 269.75V278.78Q250.96 279.79 252.15 280.34Q253.34 280.88 254.91 280.88ZM279.61 285.5Q276.82 285.5 274.53 284.44Q272.24 283.38 270.88 281.68L274.07 278.78Q274.95 279.67 276.4 280.49Q277.85 281.3 279.87 281.3Q281.32 281.3 282.27 280.82Q283.23 280.34 283.23 279.2Q283.23 278.49 282.64 277.98Q282.05 277.46 280.92 276.98Q279.78 276.5 278.14 275.89Q276.11 275.13 274.56 274.25Q273.02 273.37 272.16 272.1Q271.3 270.82 271.3 268.91Q271.3 267.05 272.4 265.73Q273.5 264.42 275.38 263.73Q277.26 263.03 279.57 263.03Q282.34 263.03 284.34 264.02Q286.33 265.01 287.59 266.44L284.32 269.12Q283.5 268.39 282.26 267.81Q281.02 267.23 279.19 267.23Q277.81 267.23 276.91 267.65Q276 268.07 276 269Q276 269.65 276.62 270.14Q277.24 270.64 278.29 271.08Q279.34 271.52 280.62 271.98Q282.47 272.65 284.14 273.49Q285.81 274.33 286.87 275.67Q287.93 277 287.93 279.16Q287.93 282.19 285.65 283.85Q283.37 285.5 279.61 285.5Z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1017 B After Width: | Height: | Size: 6.0 KiB |
@@ -1,10 +1,31 @@
|
||||
<svg width="360" height="360" viewBox="0 0 360 360" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Stacked lockup for light backgrounds / square placements -->
|
||||
<g transform="translate(80,30) scale(1.0)">
|
||||
<path d="M32,184 L20,172 L26,155 L18,146 L46,138 L82,144 L112,134 L150,140 L176,150 L182,168 L170,184 L142,192 L100,182 L64,190 Z" fill="#E6690E"/>
|
||||
<path d="M54,144 L42,134 L50,118 L44,108 L68,100 L96,106 L118,98 L142,106 L156,116 L150,132 L160,142 L132,150 L100,140 L70,148 Z" fill="#FF8A00"/>
|
||||
<path d="M68,106 L58,96 L64,82 L60,72 L80,66 L100,72 L116,64 L132,74 L138,86 L130,98 L138,106 L112,112 L88,104 L72,110 Z" fill="#FF9D2E"/>
|
||||
<path d="M80,70 L72,60 L78,48 L74,40 L92,36 L106,42 L116,34 L126,44 L124,56 L130,66 L108,72 L92,64 L82,70 Z" fill="#FFB157"/>
|
||||
<svg width="360" height="320" viewBox="0 0 360 320" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Derived, not shipped by the v2 package; see README.md in this dir. -->
|
||||
<defs>
|
||||
<linearGradient id="s1" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#B5650B"/>
|
||||
<stop offset="1" stop-color="#8A4A06"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s2" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#D67A0C"/>
|
||||
<stop offset="1" stop-color="#AD5E08"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s3" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#F08E12"/>
|
||||
<stop offset="1" stop-color="#C96E09"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="s4" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#FFB84D"/>
|
||||
<stop offset="1" stop-color="#FF8A00"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<g transform="translate(48.75,-38.5) scale(0.75)">
|
||||
<polygon points="48,297 232,291 320,304 313,336 224,356 65,354 30,335 34,306" fill="url(#s1)"/>
|
||||
<polygon points="84,248 224,254 276,262 270,290 231,297 89,296 62,282 66,260" fill="url(#s2)"/>
|
||||
<polygon points="118,206 210,198 244,214 238,238 208,246 122,244 100,232 104,214" fill="url(#s3)"/>
|
||||
<polygon points="158,136 206,120 224,148 213,182 180,192 155,180 148,156" fill="url(#s4)"/>
|
||||
</g>
|
||||
<text x="180" y="290" font-family="'JetBrains Mono','Fira Code',ui-monospace,monospace" font-size="42" font-weight="700" fill="#111315" letter-spacing="-1" text-anchor="middle">cairn <tspan fill="#E6690E">obs</tspan></text>
|
||||
|
||||
<path fill="#111315" d="M80.93 285.5Q76.44 285.5 73.77 282.54Q71.1 279.58 71.1 274.29Q71.1 270.78 72.34 268.26Q73.58 265.74 75.81 264.39Q78.03 263.03 81.02 263.03Q84.35 263.03 86.59 264.45Q88.83 265.87 89.84 268.87L85.26 270.43Q84.8 269.19 83.78 268.4Q82.76 267.61 81.06 267.61Q78.64 267.61 77.33 269.44Q76.02 271.27 76.02 274.29Q76.02 277.33 77.33 279.11Q78.64 280.88 80.97 280.88Q82.72 280.88 83.8 280.06Q84.88 279.25 85.38 277.73L89.96 279.16Q89.02 282.27 86.77 283.89Q84.52 285.5 80.93 285.5ZM103.75 285.5Q101.5 285.5 99.7 284.71Q97.91 283.91 96.86 282.32Q95.81 280.74 95.81 278.36Q95.81 275.89 97.07 274.32Q98.33 272.76 100.29 272.01Q102.25 271.27 104.38 271.27Q106.01 271.27 107.29 271.55Q108.58 271.83 109.71 272.4V271.14Q109.71 269.71 109.21 268.86Q108.7 268.01 107.75 267.64Q106.79 267.28 105.47 267.28Q103.68 267.28 101.93 267.86Q100.18 268.45 98.66 269.46L97.19 265.51Q98.75 264.52 101.02 263.78Q103.28 263.03 105.89 263.03Q107.32 263.03 108.82 263.32Q110.32 263.6 111.59 264.43Q112.86 265.26 113.64 266.87Q114.41 268.47 114.41 271.1V285H109.71V283.32Q108.83 284.16 107.39 284.83Q105.95 285.5 103.75 285.5ZM104.63 281.26Q106.39 281.26 107.64 280.61Q108.89 279.96 109.71 279.12V276.35Q108.83 275.91 107.64 275.64Q106.45 275.38 105.13 275.38Q103.28 275.38 101.88 276.09Q100.47 276.79 100.47 278.36Q100.47 279.64 101.56 280.45Q102.65 281.26 104.63 281.26ZM128.03 285V263.54H132.86V285ZM122.11 285V280.76H138.78V285ZM122.11 267.78V263.54H131.18V267.78ZM130.41 260.56Q129.23 260.56 128.4 259.71Q127.57 258.86 127.57 257.66Q127.57 256.46 128.4 255.63Q129.23 254.8 130.41 254.8Q131.66 254.8 132.49 255.63Q133.32 256.46 133.32 257.66Q133.32 258.86 132.49 259.71Q131.66 260.56 130.41 260.56ZM144.33 285V280.76H148.87V267.78H144.33V263.54H153.36V268.28L153.11 267.65Q153.51 266.33 154.59 265.28Q155.67 264.23 157.28 263.63Q158.89 263.03 160.84 263.03Q162.46 263.03 163.7 263.38Q164.94 263.73 165.75 264.17V272.11H161.05V265.6L163.11 267.7Q162.48 267.59 161.94 267.54Q161.41 267.49 161.05 267.49Q158.4 267.49 156.79 268.25Q155.17 269.02 154.44 270.45Q153.7 271.88 153.7 273.83V280.76H159.71V285ZM170.59 285V263.54H175.42V268.62L174.79 267.19Q174.79 266.25 175.7 265.29Q176.6 264.34 178.12 263.69Q179.64 263.03 181.51 263.03Q183.65 263.03 185.46 263.87Q187.27 264.71 188.36 266.66Q189.45 268.6 189.45 271.9V285H184.62V272.9Q184.62 269.94 183.31 268.78Q182 267.61 180.17 267.61Q178.89 267.61 177.81 268.08Q176.72 268.56 176.07 269.69Q175.42 270.82 175.42 272.82V285Z"/>
|
||||
<path fill="#E6690E" d="M229.74 285.5Q226.57 285.5 224.26 284.14Q221.95 282.77 220.7 280.26Q219.45 277.75 219.45 274.29Q219.45 270.87 220.7 268.34Q221.95 265.81 224.26 264.42Q226.57 263.03 229.74 263.03Q232.94 263.03 235.25 264.41Q237.56 265.79 238.8 268.32Q240.03 270.85 240.03 274.29Q240.03 277.73 238.8 280.25Q237.56 282.77 235.25 284.14Q232.94 285.5 229.74 285.5ZM229.74 280.88Q232.39 280.88 233.78 279.08Q235.16 277.27 235.16 274.29Q235.16 271.29 233.8 269.45Q232.43 267.61 229.74 267.61Q227.14 267.61 225.73 269.44Q224.33 271.27 224.33 274.29Q224.33 277.27 225.73 279.08Q227.14 280.88 229.74 280.88ZM255.67 285.5Q253.76 285.5 252.42 284.92Q251.09 284.33 250.21 283.36V285H245.38V256.9L250.21 254.68V265.22Q251.09 264.23 252.63 263.63Q254.18 263.03 255.75 263.03Q258.4 263.03 260.44 264.39Q262.49 265.74 263.66 268.25Q264.82 270.76 264.82 274.25Q264.82 279.69 262.35 282.6Q259.89 285.5 255.67 285.5ZM254.91 280.88Q257.47 280.88 258.71 279.09Q259.95 277.29 259.95 274.25Q259.95 271.04 258.68 269.32Q257.41 267.61 254.91 267.61Q253.76 267.61 252.82 267.95Q251.89 268.28 251.22 268.78Q250.56 269.27 250.21 269.75V278.78Q250.96 279.79 252.15 280.34Q253.34 280.88 254.91 280.88ZM279.61 285.5Q276.82 285.5 274.53 284.44Q272.24 283.38 270.88 281.68L274.07 278.78Q274.95 279.67 276.4 280.49Q277.85 281.3 279.87 281.3Q281.32 281.3 282.27 280.82Q283.23 280.34 283.23 279.2Q283.23 278.49 282.64 277.98Q282.05 277.46 280.92 276.98Q279.78 276.5 278.14 275.89Q276.11 275.13 274.56 274.25Q273.02 273.37 272.16 272.1Q271.3 270.82 271.3 268.91Q271.3 267.05 272.4 265.73Q273.5 264.42 275.38 263.73Q277.26 263.03 279.57 263.03Q282.34 263.03 284.34 264.02Q286.33 265.01 287.59 266.44L284.32 269.12Q283.5 268.39 282.26 267.81Q281.02 267.23 279.19 267.23Q277.81 267.23 276.91 267.65Q276 268.07 276 269Q276 269.65 276.62 270.14Q277.24 270.64 278.29 271.08Q279.34 271.52 280.62 271.98Q282.47 272.65 284.14 273.49Q285.81 274.33 286.87 275.67Q287.93 277 287.93 279.16Q287.93 282.19 285.65 283.85Q283.37 285.5 279.61 285.5Z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1018 B After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="440" height="90" viewBox="0 0 440 90" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Wordmark for dark backgrounds -->
|
||||
<path fill="#F2F2F2" d="M15.26 58.58Q10.13 58.58 7.08 55.19Q4.03 51.81 4.03 45.76Q4.03 41.75 5.45 38.87Q6.86 35.99 9.41 34.44Q11.95 32.9 15.36 32.9Q19.18 32.9 21.73 34.52Q24.29 36.14 25.44 39.57L20.21 41.34Q19.68 39.93 18.52 39.03Q17.35 38.13 15.41 38.13Q12.65 38.13 11.15 40.22Q9.65 42.3 9.65 45.76Q9.65 49.24 11.15 51.27Q12.65 53.3 15.31 53.3Q17.3 53.3 18.54 52.36Q19.78 51.42 20.35 49.7L25.58 51.33Q24.5 54.88 21.94 56.73Q19.37 58.58 15.26 58.58ZM41.48 58.58Q38.91 58.58 36.86 57.66Q34.81 56.75 33.61 54.94Q32.41 53.13 32.41 50.42Q32.41 47.58 33.85 45.8Q35.29 44.01 37.53 43.16Q39.78 42.3 42.2 42.3Q44.07 42.3 45.54 42.63Q47 42.95 48.3 43.6V42.16Q48.3 40.53 47.72 39.56Q47.14 38.58 46.05 38.16Q44.96 37.74 43.45 37.74Q41.41 37.74 39.4 38.42Q37.4 39.09 35.67 40.24L33.99 35.73Q35.77 34.6 38.36 33.75Q40.95 32.9 43.93 32.9Q45.56 32.9 47.28 33.22Q48.99 33.54 50.44 34.49Q51.9 35.44 52.78 37.28Q53.67 39.11 53.67 42.11V58H48.3V56.08Q47.29 57.04 45.64 57.81Q44 58.58 41.48 58.58ZM42.49 53.73Q44.5 53.73 45.93 52.98Q47.36 52.24 48.3 51.28V48.11Q47.29 47.61 45.93 47.31Q44.58 47.01 43.06 47.01Q40.95 47.01 39.34 47.81Q37.74 48.62 37.74 50.42Q37.74 51.88 38.98 52.8Q40.23 53.73 42.49 53.73ZM69.38 58V33.47H74.9V58ZM62.61 58V53.15H81.66V58ZM62.61 38.32V33.47H72.98V38.32ZM72.1 30.06Q70.74 30.06 69.8 29.09Q68.85 28.12 68.85 26.75Q68.85 25.38 69.8 24.44Q70.74 23.49 72.1 23.49Q73.53 23.49 74.48 24.44Q75.42 25.38 75.42 26.75Q75.42 28.12 74.48 29.09Q73.53 30.06 72.1 30.06ZM88.15 58V53.15H93.34V38.32H88.15V33.47H98.47V38.9L98.18 38.18Q98.64 36.66 99.88 35.46Q101.11 34.26 102.95 33.58Q104.78 32.9 107.02 32.9Q108.86 32.9 110.28 33.29Q111.7 33.69 112.63 34.19V43.26H107.26V35.82L109.61 38.22Q108.89 38.1 108.28 38.04Q107.66 37.98 107.26 37.98Q104.23 37.98 102.38 38.86Q100.54 39.74 99.7 41.37Q98.86 43 98.86 45.23V53.15H105.72V58ZM118.3 58V33.47H123.82V39.28L123.1 37.65Q123.1 36.57 124.14 35.48Q125.17 34.38 126.91 33.64Q128.65 32.9 130.78 32.9Q133.23 32.9 135.3 33.86Q137.36 34.82 138.61 37.04Q139.86 39.26 139.86 43.02V58H134.34V44.18Q134.34 40.79 132.84 39.46Q131.34 38.13 129.25 38.13Q127.78 38.13 126.55 38.67Q125.31 39.21 124.57 40.5Q123.82 41.8 123.82 44.08V58Z"/>
|
||||
<path fill="#FF8A00" d="M227.35 58.58Q223.73 58.58 221.09 57.02Q218.45 55.46 217.02 52.59Q215.59 49.72 215.59 45.76Q215.59 41.85 217.02 38.96Q218.45 36.06 221.09 34.48Q223.73 32.9 227.35 32.9Q231 32.9 233.64 34.47Q236.28 36.04 237.7 38.93Q239.11 41.82 239.11 45.76Q239.11 49.7 237.7 52.58Q236.28 55.46 233.64 57.02Q231 58.58 227.35 58.58ZM227.35 53.3Q230.38 53.3 231.96 51.23Q233.54 49.17 233.54 45.76Q233.54 42.33 231.98 40.23Q230.42 38.13 227.35 38.13Q224.38 38.13 222.77 40.22Q221.16 42.3 221.16 45.76Q221.16 49.17 222.77 51.23Q224.38 53.3 227.35 53.3ZM259.12 58.58Q256.94 58.58 255.41 57.9Q253.89 57.23 252.88 56.13V58H247.36V25.89L252.88 23.34V35.39Q253.89 34.26 255.65 33.58Q257.42 32.9 259.22 32.9Q262.24 32.9 264.58 34.44Q266.92 35.99 268.25 38.86Q269.58 41.73 269.58 45.71Q269.58 51.93 266.76 55.25Q263.94 58.58 259.12 58.58ZM258.26 53.3Q261.18 53.3 262.6 51.24Q264.02 49.19 264.02 45.71Q264.02 42.04 262.56 40.08Q261.11 38.13 258.26 38.13Q256.94 38.13 255.87 38.51Q254.8 38.9 254.04 39.46Q253.29 40.02 252.88 40.58V50.9Q253.74 52.05 255.1 52.67Q256.46 53.3 258.26 53.3ZM288.63 58.58Q285.44 58.58 282.82 57.36Q280.21 56.15 278.65 54.21L282.3 50.9Q283.3 51.9 284.96 52.84Q286.62 53.78 288.92 53.78Q290.58 53.78 291.67 53.22Q292.76 52.67 292.76 51.38Q292.76 50.56 292.09 49.97Q291.42 49.38 290.12 48.83Q288.82 48.28 286.95 47.58Q284.62 46.72 282.86 45.71Q281.1 44.7 280.11 43.25Q279.13 41.8 279.13 39.62Q279.13 37.48 280.39 35.98Q281.65 34.48 283.8 33.69Q285.94 32.9 288.58 32.9Q291.75 32.9 294.03 34.02Q296.31 35.15 297.75 36.78L294.01 39.86Q293.07 39.02 291.66 38.36Q290.24 37.7 288.15 37.7Q286.57 37.7 285.54 38.18Q284.5 38.66 284.5 39.71Q284.5 40.46 285.21 41.02Q285.92 41.58 287.12 42.09Q288.32 42.59 289.78 43.12Q291.9 43.89 293.8 44.85Q295.71 45.81 296.92 47.33Q298.14 48.86 298.14 51.33Q298.14 54.78 295.53 56.68Q292.93 58.58 288.63 58.58Z"/>
|
||||
<rect x="380" y="20" width="14" height="38" fill="#FF8A00"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="440" height="90" viewBox="0 0 440 90" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Wordmark for light backgrounds -->
|
||||
<path fill="#111315" d="M15.26 58.58Q10.13 58.58 7.08 55.19Q4.03 51.81 4.03 45.76Q4.03 41.75 5.45 38.87Q6.86 35.99 9.41 34.44Q11.95 32.9 15.36 32.9Q19.18 32.9 21.73 34.52Q24.29 36.14 25.44 39.57L20.21 41.34Q19.68 39.93 18.52 39.03Q17.35 38.13 15.41 38.13Q12.65 38.13 11.15 40.22Q9.65 42.3 9.65 45.76Q9.65 49.24 11.15 51.27Q12.65 53.3 15.31 53.3Q17.3 53.3 18.54 52.36Q19.78 51.42 20.35 49.7L25.58 51.33Q24.5 54.88 21.94 56.73Q19.37 58.58 15.26 58.58ZM41.48 58.58Q38.91 58.58 36.86 57.66Q34.81 56.75 33.61 54.94Q32.41 53.13 32.41 50.42Q32.41 47.58 33.85 45.8Q35.29 44.01 37.53 43.16Q39.78 42.3 42.2 42.3Q44.07 42.3 45.54 42.63Q47 42.95 48.3 43.6V42.16Q48.3 40.53 47.72 39.56Q47.14 38.58 46.05 38.16Q44.96 37.74 43.45 37.74Q41.41 37.74 39.4 38.42Q37.4 39.09 35.67 40.24L33.99 35.73Q35.77 34.6 38.36 33.75Q40.95 32.9 43.93 32.9Q45.56 32.9 47.28 33.22Q48.99 33.54 50.44 34.49Q51.9 35.44 52.78 37.28Q53.67 39.11 53.67 42.11V58H48.3V56.08Q47.29 57.04 45.64 57.81Q44 58.58 41.48 58.58ZM42.49 53.73Q44.5 53.73 45.93 52.98Q47.36 52.24 48.3 51.28V48.11Q47.29 47.61 45.93 47.31Q44.58 47.01 43.06 47.01Q40.95 47.01 39.34 47.81Q37.74 48.62 37.74 50.42Q37.74 51.88 38.98 52.8Q40.23 53.73 42.49 53.73ZM69.38 58V33.47H74.9V58ZM62.61 58V53.15H81.66V58ZM62.61 38.32V33.47H72.98V38.32ZM72.1 30.06Q70.74 30.06 69.8 29.09Q68.85 28.12 68.85 26.75Q68.85 25.38 69.8 24.44Q70.74 23.49 72.1 23.49Q73.53 23.49 74.48 24.44Q75.42 25.38 75.42 26.75Q75.42 28.12 74.48 29.09Q73.53 30.06 72.1 30.06ZM88.15 58V53.15H93.34V38.32H88.15V33.47H98.47V38.9L98.18 38.18Q98.64 36.66 99.88 35.46Q101.11 34.26 102.95 33.58Q104.78 32.9 107.02 32.9Q108.86 32.9 110.28 33.29Q111.7 33.69 112.63 34.19V43.26H107.26V35.82L109.61 38.22Q108.89 38.1 108.28 38.04Q107.66 37.98 107.26 37.98Q104.23 37.98 102.38 38.86Q100.54 39.74 99.7 41.37Q98.86 43 98.86 45.23V53.15H105.72V58ZM118.3 58V33.47H123.82V39.28L123.1 37.65Q123.1 36.57 124.14 35.48Q125.17 34.38 126.91 33.64Q128.65 32.9 130.78 32.9Q133.23 32.9 135.3 33.86Q137.36 34.82 138.61 37.04Q139.86 39.26 139.86 43.02V58H134.34V44.18Q134.34 40.79 132.84 39.46Q131.34 38.13 129.25 38.13Q127.78 38.13 126.55 38.67Q125.31 39.21 124.57 40.5Q123.82 41.8 123.82 44.08V58Z"/>
|
||||
<path fill="#E6690E" d="M227.35 58.58Q223.73 58.58 221.09 57.02Q218.45 55.46 217.02 52.59Q215.59 49.72 215.59 45.76Q215.59 41.85 217.02 38.96Q218.45 36.06 221.09 34.48Q223.73 32.9 227.35 32.9Q231 32.9 233.64 34.47Q236.28 36.04 237.7 38.93Q239.11 41.82 239.11 45.76Q239.11 49.7 237.7 52.58Q236.28 55.46 233.64 57.02Q231 58.58 227.35 58.58ZM227.35 53.3Q230.38 53.3 231.96 51.23Q233.54 49.17 233.54 45.76Q233.54 42.33 231.98 40.23Q230.42 38.13 227.35 38.13Q224.38 38.13 222.77 40.22Q221.16 42.3 221.16 45.76Q221.16 49.17 222.77 51.23Q224.38 53.3 227.35 53.3ZM259.12 58.58Q256.94 58.58 255.41 57.9Q253.89 57.23 252.88 56.13V58H247.36V25.89L252.88 23.34V35.39Q253.89 34.26 255.65 33.58Q257.42 32.9 259.22 32.9Q262.24 32.9 264.58 34.44Q266.92 35.99 268.25 38.86Q269.58 41.73 269.58 45.71Q269.58 51.93 266.76 55.25Q263.94 58.58 259.12 58.58ZM258.26 53.3Q261.18 53.3 262.6 51.24Q264.02 49.19 264.02 45.71Q264.02 42.04 262.56 40.08Q261.11 38.13 258.26 38.13Q256.94 38.13 255.87 38.51Q254.8 38.9 254.04 39.46Q253.29 40.02 252.88 40.58V50.9Q253.74 52.05 255.1 52.67Q256.46 53.3 258.26 53.3ZM288.63 58.58Q285.44 58.58 282.82 57.36Q280.21 56.15 278.65 54.21L282.3 50.9Q283.3 51.9 284.96 52.84Q286.62 53.78 288.92 53.78Q290.58 53.78 291.67 53.22Q292.76 52.67 292.76 51.38Q292.76 50.56 292.09 49.97Q291.42 49.38 290.12 48.83Q288.82 48.28 286.95 47.58Q284.62 46.72 282.86 45.71Q281.1 44.7 280.11 43.25Q279.13 41.8 279.13 39.62Q279.13 37.48 280.39 35.98Q281.65 34.48 283.8 33.69Q285.94 32.9 288.58 32.9Q291.75 32.9 294.03 34.02Q296.31 35.15 297.75 36.78L294.01 39.86Q293.07 39.02 291.66 38.36Q290.24 37.7 288.15 37.7Q286.57 37.7 285.54 38.18Q284.5 38.66 284.5 39.71Q284.5 40.46 285.21 41.02Q285.92 41.58 287.12 42.09Q288.32 42.59 289.78 43.12Q291.9 43.89 293.8 44.85Q295.71 45.81 296.92 47.33Q298.14 48.86 298.14 51.33Q298.14 54.78 295.53 56.68Q292.93 58.58 288.63 58.58Z"/>
|
||||
<rect x="380" y="20" width="14" height="38" fill="#E6690E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -56,8 +56,10 @@
|
||||
max-width: 48rem;
|
||||
}
|
||||
.logo {
|
||||
/* The stacked lockup is 360x320, not square -- height must stay
|
||||
auto or the wordmark under the cairn stretches. */
|
||||
width: 11rem;
|
||||
height: 11rem;
|
||||
height: auto;
|
||||
}
|
||||
.tagline {
|
||||
margin-top: var(--space-4);
|
||||
|
||||
|
Before Width: | Height: | Size: 535 B After Width: | Height: | Size: 516 B |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 968 B After Width: | Height: | Size: 1002 B |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 22 KiB |