From e31729e27a5db67ef2e3f5a9b1a5eef1a76addd9 Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Fri, 12 Jun 2026 13:05:37 +0100 Subject: [PATCH] feat: match original theme to authentic 1987 DLR livery Set the original colour scheme's typeface and palette to the 1987 Docklands Light Railway P86/P89 stock. - Use the Rockwell slab serif (the original DLR branding typeface) for the original theme, with Rokkitt loaded as a free fallback for systems without Rockwell installed. - Flip the palette to be blue-dominant: blue body/skirt as the field, red band/doors as the accent, white stripes, matching the rolling stock. --- index.html | 3 +++ styles.css | 22 +++++++++++++--------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index b299cb1..0722fe0 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,9 @@ Why is the DLR shut today? + + + diff --git a/styles.css b/styles.css index 4e215f7..ea9572c 100644 --- a/styles.css +++ b/styles.css @@ -19,16 +19,20 @@ --button-active-text: #ffffff; } -/* Original DLR — 1987 red, white and blue */ +/* Original DLR — 1987 P86/P89 livery: blue body and skirt, red band and + doors, white stripes. Blue is the dominant field, red the accent. + 1987 branding used the Rockwell slab serif; Rokkitt is a free fallback for + systems without Rockwell installed. */ [data-theme="original"] { - --bg: #c8102e; - --surface: #002b5c; - --text: #f5f0e1; - --message: #f5f0e1; - --button-bg: #002b5c; - --button-text: #f5f0e1; - --button-active-bg: #f5f0e1; - --button-active-text: #002b5c; + --font-stack: Rockwell, "Rockwell Nova", Rokkitt, Georgia, serif; + --bg: #1f3a93; + --surface: #c8102e; + --text: #ffffff; + --message: #ffffff; + --button-bg: #c8102e; + --button-text: #ffffff; + --button-active-bg: #ffffff; + --button-active-text: #1f3a93; } * { -- 2.52.0