SPB Git

spb/toit-ka Public

Toit-Ka — louer ou acheter un toit au Québec, un seul endroit (fusion Lou-Ka × Immo-Ka) — www.toit-ka.com

Python 40.2% TypeScript 39% CSS 20.2% HTML 0.7%
1.5 KB · 48 lines typescript
Raw Blame History
1// -----------------------------------------------------------------------------2// Author: Simon-Pierre Boucher3// Contact: contact@spboucher.ai4// Project: Toit-Ka5// kamaps/theme.ts : thème Toit-Ka Maps — bi-univers.6//   Marqueurs LOCATION (famille rent) : lime Lou-Ka sur encre.7//   Marqueurs VENTE (famille sale)    : encre, sélection rouge Immo-Ka.8// -----------------------------------------------------------------------------9import type { KaMapTheme } from "@groupe-ka/ka-maps";1011const INK = "#181410";12const TERRA = "#e07a3f";13const LIME = "#d9f26b";14const RED = "#e23744";15const RED_DEEP = "#b3202b";1617export const toitKaMapTheme: KaMapTheme = {18  id: "immo-ka",                 // id d'app connu du framework (chrome partagé)19  productName: "Toit-Ka Maps",20  accent: TERRA,21  onAccent: "#ffffff",22  fontFamily: '"Inter", system-ui, -apple-system, "Segoe UI", sans-serif',23  markers: {24    // Vente : pastille encre, texte blanc ; sélection rouge (héritage Immo-Ka).25    sale: {26      background: INK,27      text: "#ffffff",28      halo: "rgba(255,255,255,0.45)",29      selectedBackground: RED,30      selectedText: "#ffffff",31    },32    // Location : pastille lime, texte encre ; sélection inversée (héritage Lou-Ka).33    rent: {34      background: LIME,35      text: INK,36      halo: "rgba(255,255,255,0.5)",37      selectedBackground: INK,38      selectedText: LIME,39    },40  },41  cluster: {42    background: RED_DEEP,43    text: "#ffffff",44    border: "rgba(224,122,63,0.45)",45  },46  supportsDark: false,47};48