<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://forlorn.wiki/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3ACommon.css</id>
	<title>MediaWiki:Common.css - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://forlorn.wiki/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3ACommon.css"/>
	<link rel="alternate" type="text/html" href="https://forlorn.wiki/index.php?title=MediaWiki:Common.css&amp;action=history"/>
	<updated>2026-09-24T02:38:14Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://forlorn.wiki/index.php?title=MediaWiki:Common.css&amp;diff=10&amp;oldid=prev</id>
		<title>OpenCode: Forlorn theme: fonts, colors, and shared styles</title>
		<link rel="alternate" type="text/html" href="https://forlorn.wiki/index.php?title=MediaWiki:Common.css&amp;diff=10&amp;oldid=prev"/>
		<updated>2026-09-24T00:10:54Z</updated>

		<summary type="html">&lt;p&gt;Forlorn theme: fonts, colors, and shared styles&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;/* CSS placed here will be applied to all skins. */&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * Forlorn Wiki theme&lt;br /&gt;
 *&lt;br /&gt;
 * Everything visual is driven by the `--fw-*` variables below. Change a color&lt;br /&gt;
 * or a font here and the whole wiki follows. Skin-specific wiring lives in&lt;br /&gt;
 * MediaWiki:Citizen.css.&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
/* Fonts: EB Garamond for headings, Lora for body text */&lt;br /&gt;
@import url(&amp;#039;https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&amp;amp;family=Lora:ital,wght@0,400..700;1,400..700&amp;amp;display=swap&amp;#039;);&lt;br /&gt;
&lt;br /&gt;
/* Metric-compatible local fallbacks, to avoid layout shift while fonts load */&lt;br /&gt;
@font-face {&lt;br /&gt;
	font-family: &amp;#039;EB Garamond-fallback&amp;#039;;&lt;br /&gt;
	size-adjust: 94.3%;&lt;br /&gt;
	ascent-override: 101%;&lt;br /&gt;
	descent-override: 36.4%;&lt;br /&gt;
	src: local(&amp;#039;Times New Roman&amp;#039;);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
@font-face {&lt;br /&gt;
	font-family: &amp;#039;Lora-fallback&amp;#039;;&lt;br /&gt;
	size-adjust: 105.2%;&lt;br /&gt;
	ascent-override: 92%;&lt;br /&gt;
	descent-override: 32.6%;&lt;br /&gt;
	src: local(&amp;#039;Georgia&amp;#039;);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
:root {&lt;br /&gt;
	/* Borders */&lt;br /&gt;
	--fw-border-color-base: rgba(0, 0, 0, 0.08);&lt;br /&gt;
	--fw-border-color-subtle: rgba(0, 0, 0, 0.05);&lt;br /&gt;
	--fw-border-color-interactive: rgba(0, 0, 0, 0.11);&lt;br /&gt;
&lt;br /&gt;
	/* Text colors */&lt;br /&gt;
	--fw-color-emphasized: #1a1f15;&lt;br /&gt;
	--fw-color-base: #2a3025;&lt;br /&gt;
	--fw-color-subtle: #4e5a42;&lt;br /&gt;
	--fw-color-inverted-progressive: #fff;&lt;br /&gt;
&lt;br /&gt;
	/* Background colors, from page background (0) to the most raised surface (4) */&lt;br /&gt;
	--fw-color-surface-0: #f9f4ee;&lt;br /&gt;
	--fw-color-surface-1: #fffbf6;&lt;br /&gt;
	--fw-color-surface-2: #f6ede0;&lt;br /&gt;
	--fw-color-surface-3: #f0e3cf;&lt;br /&gt;
	--fw-color-surface-4: #e6d9c5;&lt;br /&gt;
	--fw-color-surface-5: #e3d2b8;&lt;br /&gt;
&lt;br /&gt;
	/* Accent color: links, buttons, active states */&lt;br /&gt;
	--fw-color-progressive: #507b07;&lt;br /&gt;
	--fw-color-progressive--hover: #588418;&lt;br /&gt;
	--fw-color-progressive--active: #4a710a;&lt;br /&gt;
&lt;br /&gt;
	/* Fonts */&lt;br /&gt;
	--fw-font-family-heading: &amp;#039;EB Garamond&amp;#039;, &amp;#039;EB Garamond-fallback&amp;#039;, serif;&lt;br /&gt;
	--fw-font-family-body: &amp;#039;Lora&amp;#039;, &amp;#039;Lora-fallback&amp;#039;, serif;&lt;br /&gt;
	--fw-font-size-x-small: 0.8125rem;&lt;br /&gt;
&lt;br /&gt;
	/* Opacity of the decorative background patterns */&lt;br /&gt;
	--fw-opacity-pattern: 0.08;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html {&lt;br /&gt;
	/* Keep numerals on the baseline in serif fonts */&lt;br /&gt;
	font-variant-numeric: lining-nums;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Quotes */&lt;br /&gt;
blockquote {&lt;br /&gt;
	padding-left: 1rem;&lt;br /&gt;
	border-left: 2px solid var(--fw-border-color-base);&lt;br /&gt;
	font-style: italic;&lt;br /&gt;
	text-wrap: balance;&lt;br /&gt;
	text-wrap: pretty;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
blockquote cite {&lt;br /&gt;
	color: var(--fw-color-subtle);&lt;br /&gt;
	font-size: var(--fw-font-size-x-small);&lt;br /&gt;
	font-style: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
blockquote cite::before {&lt;br /&gt;
	content: &amp;#039;―&amp;#039;;&lt;br /&gt;
	margin-right: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
blockquote &amp;gt; p:first-child::before {&lt;br /&gt;
	content: open-quote;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
blockquote:has(cite) &amp;gt; p:nth-last-child(2)::after,&lt;br /&gt;
blockquote:not(:has(cite)) &amp;gt; p:last-child::after {&lt;br /&gt;
	content: close-quote;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* References */&lt;br /&gt;
ol.references {&lt;br /&gt;
	font-size: var(--fw-font-size-x-small);&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
	padding-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.references-small {&lt;br /&gt;
	font-size: 0.75rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
ol.references &amp;gt; li:target,&lt;br /&gt;
sup.reference:target {&lt;br /&gt;
	background-color: var(--fw-color-surface-3);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Print */&lt;br /&gt;
@media print {&lt;br /&gt;
	:root {&lt;br /&gt;
		--fw-border-color-base: #aaa !important;&lt;br /&gt;
		--fw-border-color-subtle: #ddd !important;&lt;br /&gt;
		--fw-border-color-interactive: #000 !important;&lt;br /&gt;
		--fw-color-emphasized: #000 !important;&lt;br /&gt;
		--fw-color-base: #222 !important;&lt;br /&gt;
		--fw-color-subtle: #444 !important;&lt;br /&gt;
		--fw-color-surface-0: #fff !important;&lt;br /&gt;
		--fw-color-surface-1: #fff !important;&lt;br /&gt;
		--fw-color-surface-2: #fff !important;&lt;br /&gt;
		--fw-color-surface-3: #fff !important;&lt;br /&gt;
		--fw-color-surface-4: #fff !important;&lt;br /&gt;
		--fw-color-surface-5: #fff !important;&lt;br /&gt;
		--fw-color-progressive: #000 !important;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>OpenCode</name></author>
	</entry>
</feed>