SPB Git forge

spb/lou-ka

Public

Lou·Ka — tous les logements à louer du Québec, un seul endroit.

232commits 1branches 0releases
172.9 MBsize
maindefault branch
2 days agolast push
HTML 98.9% Python 0.6%
2.5 KB · 82 lines typescript
Raw Blame History
1// -----------------------------------------------------------------------------2// Author: Simon-Pierre Boucher3// Contact: contact@spboucher.ai4// Project: Groupe Ka / Ka Maps (Lou-Ka integration)5// kamaps/theme.ts : thème Lou-Ka Maps v2 — identité orange / off-white / noir.6// Pastilles premium : off-white texte encre (la carte respire), l'ORANGE est7// réservé aux moments de marque (sous le marché, sélection, contrôles actifs).8// -----------------------------------------------------------------------------9import type { KaMapTheme } from "@groupe-ka/ka-maps";1011const INK = "#141814";12const ORANGE = "#ff6a00";13const OFFWHITE = "#fffdf8";14const WHITE = "#ffffff";1516export const louKaMapTheme: KaMapTheme = {17  id: "lou-ka",18  productName: "Lou-Ka Maps",19  accent: ORANGE,20  onAccent: WHITE,21  fontFamily:22    '"Inter", system-ui, -apple-system, "Segoe UI", sans-serif',23  markers: {24    // Loyer : pastille off-white, texte encre — lisible sans écraser la carte.25    // Sélection/survol : encre pleine (texte blanc), le repère absolu.26    sale: {27      background: OFFWHITE,28      text: INK,29      halo: "rgba(20, 24, 20, 0.30)",30      selectedBackground: INK,31      selectedText: WHITE,32    },33    rent: {34      background: OFFWHITE,35      text: INK,36      halo: "rgba(20, 24, 20, 0.30)",37      selectedBackground: INK,38      selectedText: WHITE,39    },40    // « Sous le marché » : orange Lou-Ka d'office — LE signal d'affaire.41    highlight: {42      background: ORANGE,43      text: WHITE,44      halo: "rgba(255, 255, 255, 0.55)",45      selectedBackground: INK,46      selectedText: WHITE,47    },48  },49  cluster: {50    background: OFFWHITE,51    text: INK,52    border: ORANGE,53    valueText: "#9c4200",54    valueHalo: "rgba(255, 253, 248, 0.92)",55  },56  // Cartographie Lou-Ka : fond neutre et raffiné — gris très pâle,57  // eau bleu désaturé, parcs verts subtils, bâtiments bien définis.58  // Les prix restent l'élément dominant de la carte.59  basemapOverrides: {60    light: {61      background: "#f7f8fa",62      residential: "#f0f1f4",63      water: "#c9d8ef",64      waterway: "#bfd0ea",65      park: "#dce8d8",66      wood: "#d0e0ca",67      building: "#e6e8ee",68      buildingOutline: "#d0d3dd",69      road: "#ffffff",70      roadCasing: "#dcdee6",71      motorway: "#f4ede2",72      boundary: "#a9adbd",73      label: "#3e4560",74      labelHalo: "rgba(247,248,250,0.92)",75      cityLabel: "#0b1330",76      roadLabel: "#8a90a5",77      waterLabel: "#5c74a8",78    },79  },80  supportsDark: false,81};82