@inploi/plugin-kin 2.4.3 → 2.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,39 +0,0 @@
1
- export type KinTheme = {
2
- /** Primary accent color as HEX (e.g., "#FF4D00") */
3
- accentColor: string;
4
- /** Light or dark mode */
5
- mode: 'light' | 'dark';
6
- };
7
- /**
8
- * Generates CSS custom properties for the theme
9
- */
10
- export declare function generateThemeCss(theme: KinTheme): string;
11
- /**
12
- * Default theme - Inploi Tangerine
13
- */
14
- export declare const DEFAULT_THEME: KinTheme;
15
- /**
16
- * Preset brand themes with exact HEX colors
17
- */
18
- export declare const BRAND_THEMES: {
19
- /** Inploi - Tangerine orange, light mode */
20
- readonly inploi: {
21
- readonly accentColor: "#FF4D00";
22
- readonly mode: "light";
23
- };
24
- /** Boots - Deep navy blue, light mode */
25
- readonly boots: {
26
- readonly accentColor: "#05054b";
27
- readonly mode: "light";
28
- };
29
- /** Wagamama - Red/orange, dark mode */
30
- readonly wagamama: {
31
- readonly accentColor: "#df3228";
32
- readonly mode: "dark";
33
- };
34
- /** Gail's - Red, light mode */
35
- readonly gails: {
36
- readonly accentColor: "#cf2030";
37
- readonly mode: "light";
38
- };
39
- };