colour -> color, behaviour -> behavior, centre -> center, favourite -> favorite, and about twenty other pairs, applied consistently across comments, docs, error/UI copy, and a handful of QML identifiers that used the British spelling as their actual name: SystemSettings' serialiseValue/serialiseTable/normaliseGradient, Displays' normaliseModes, Wallpaper's normalisePolicy, SettingsBackup's serialiseHomeState, DateTime's ntpSynchronised property, Clipboard's _normalise helper, and ShortcutCapture's cancelled signal (with its onCancelled handler in ShortcutsPage.qml). Every call site and the two tests that assert on the literal source text (settings-ownership and settings-backup-live contracts) were updated in lockstep. Left untouched: config/dot/espanso/match/packages/misspell-en/ is a vendored third-party autocorrect dictionary -- its entries are typo corrections, not our prose, and rewriting them would fight the package's own purpose (and any future re-sync from upstream). The already-American `favorites` property (Home page pinned accessories) was never actually misspelled -- only nearby comments and error strings said "favourites" -- so no data migration was needed there. Claude-Session: https://claude.ai/code/session_01E6TJUAh41HaP25MVHWkhRZ
88 lines
2.3 KiB
TOML
88 lines
2.3 KiB
TOML
# Tokyo Night Day — the light counterpart to tokyonight-moon.toml.
|
|
#
|
|
# Same schema and the same role for every color; only the palette differs, so
|
|
# the launcher keeps its identity when the desktop switches to light rather
|
|
# than becoming a different-looking application.
|
|
#
|
|
# Colors are the Tokyo Night Day palette, taken from kitty/themes/tokyonight-day.conf
|
|
# so the launcher and the terminal cannot drift apart.
|
|
|
|
[meta]
|
|
version = 1
|
|
name = "Tokyo Night Day"
|
|
description = "Tokyo Night Day, matched to the Panama Hyprland desktop."
|
|
variant = "light"
|
|
|
|
[colors.core]
|
|
background = "#e1e2e7" # bg
|
|
foreground = "#3760bf" # fg
|
|
secondary_background = "#d0d5e3" # bg_dark, a shade below the ground
|
|
border = "#a8aecb" # a visible hairline on a light ground
|
|
accent = "#2e7de9" # blue
|
|
accent_foreground = "#e1e2e7"
|
|
|
|
[colors.accents]
|
|
blue = "#2e7de9"
|
|
green = "#587539"
|
|
magenta = "#9854f1"
|
|
orange = "#b15c00"
|
|
purple = "#7847bd"
|
|
red = "#f52a65"
|
|
yellow = "#8c6c3e"
|
|
cyan = "#007197"
|
|
|
|
[colors.main_window]
|
|
border = "#a8aecb"
|
|
footer = { background = "colors.core.secondary_background" }
|
|
|
|
[colors.settings_window]
|
|
border = "#c4c8da"
|
|
|
|
[colors.shortcut]
|
|
border = "colors.core.border"
|
|
|
|
[colors.text]
|
|
default = "colors.core.foreground"
|
|
muted = "#6172b0" # fg_dark, 4.0:1 on the background
|
|
danger = "#f52a65"
|
|
success = "#587539"
|
|
placeholder = "#7079a8" # 3.25:1; Day's own #848cb5 is 2.54:1, too faint to read
|
|
selection = { background = "#2e7de9", foreground = "#e1e2e7" }
|
|
|
|
[colors.text.links]
|
|
default = "#2e7de9"
|
|
visited = "#9854f1"
|
|
|
|
[colors.input]
|
|
border = "#c4c8da"
|
|
border_focus = "#2e7de9"
|
|
border_error = "#f52a65"
|
|
|
|
[colors.button.primary]
|
|
background = "#d4d6e4" # bg_highlight
|
|
foreground = "#3760bf"
|
|
hover = { background = "#c4c8da" }
|
|
focus = { outline = "colors.core.accent" }
|
|
|
|
[colors.list.item.hover]
|
|
foreground = "#3760bf"
|
|
secondary_foreground = "#6172b0"
|
|
|
|
[colors.list.item.selection]
|
|
background = "#c3cdf0" # blue side of the Prism selection, lightened
|
|
foreground = "#3760bf"
|
|
secondary_background = "#d8c8e4" # orchid side of the Prism selection, lightened
|
|
secondary_foreground = "#3760bf"
|
|
|
|
[colors.grid.item]
|
|
background = "#d7d9e5"
|
|
hover = { outline = "#2e7de9" }
|
|
selection = { outline = "#9854f1" }
|
|
|
|
[colors.scrollbars]
|
|
background = "#c4c8da"
|
|
|
|
[colors.loading]
|
|
bar = "#2e7de9"
|
|
spinner = "#3760bf"
|