// ----------------------------------------------------------------------------- // Author: Simon-Pierre Boucher // Contact: contact@spboucher.ai // Project: Toit-Ka // kamaps/theme.ts : thème Toit-Ka Maps — bi-univers. // Marqueurs LOCATION (famille rent) : lime Lou-Ka sur encre. // Marqueurs VENTE (famille sale) : encre, sélection rouge Immo-Ka. // ----------------------------------------------------------------------------- import type { KaMapTheme } from "@groupe-ka/ka-maps"; const INK = "#181410"; const TERRA = "#e07a3f"; const LIME = "#d9f26b"; const RED = "#e23744"; const RED_DEEP = "#b3202b"; export const toitKaMapTheme: KaMapTheme = { id: "immo-ka", // id d'app connu du framework (chrome partagé) productName: "Toit-Ka Maps", accent: TERRA, onAccent: "#ffffff", fontFamily: '"Inter", system-ui, -apple-system, "Segoe UI", sans-serif', markers: { // Vente : pastille encre, texte blanc ; sélection rouge (héritage Immo-Ka). sale: { background: INK, text: "#ffffff", halo: "rgba(255,255,255,0.45)", selectedBackground: RED, selectedText: "#ffffff", }, // Location : pastille lime, texte encre ; sélection inversée (héritage Lou-Ka). rent: { background: LIME, text: INK, halo: "rgba(255,255,255,0.5)", selectedBackground: INK, selectedText: LIME, }, }, cluster: { background: RED_DEEP, text: "#ffffff", border: "rgba(224,122,63,0.45)", }, supportsDark: false, };