/* === theme-things.css ===
Preset for Things theme based on Things 3 / Obsidian Things.
*/

/* === theme-things-preset.css === 
Минимальный набор токенов из темы Things, 
адаптированный под структуру themes.txt.
*/

/* Глобальные настройки (радиусы, шрифты, общие параметры) */
.theme-things {
	/* Радиусы (Things использует значения 4px-10px) */
	--radius-s: 4px;                 /* [3] */
	--radius-m: 8px;                 /* [3] */
	--radius-l: 10px;                /* [3] */

	/* Типографика (Things опирается на системные шрифты Apple/Segoe) */
	--font-interface-theme: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, Ubuntu, sans-serif; /* [2] */
	--font-text-theme: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, Ubuntu, sans-serif;      /* [2] */
	
	/* Межстрочный интервал */
	--line-height: 1.5;              /* [3] */
}

/* Light Version - Палитра Things Light */
.theme-things.theme-light {
	/* Основные фоны и границы */
	--background-primary: #ffffff;           /* --color-base-00 [4] */
	--background-primary-alt: #f6f7f8;       /* --color-base-10 [4] */
	--background-secondary: #f6f7f8;         /* --color-base-20 [4] */
	--background-secondary-alt: #fcfcfc;     /* --color-base-05 [4] */
	--background-modifier-border: #ebedf0;   /* --color-base-30 [4] */

	/* Текст и акценты */
	--text-normal: #222222;                  /* --color-base-100 [4] */
	--text-muted: #707070;                   /* --color-base-60 [4] */
	--interactive-accent: #4a8ee7;           /* Рассчитано из HSL(215, 75%, 60%) [1] */

	/* Identity / Avatars (на базе основной палитры Things Light) */
	--color-identity-1: #e4374b; /* Red [4] */
	--color-identity-2: #0cb54f; /* Green [4] */
	--color-identity-3: #bd8e37; /* Yellow [4] */
	--color-identity-4: #086ddd; /* Blue [4] */
	--color-identity-5: #876be0; /* Purple [4] */
	--color-identity-6: #c32b74; /* Pink [4] */
}

/* Dark Version - Палитра Things Dark */
.theme-things.theme-dark {
	/* Основные фоны и границы */
	--background-primary: #1c2127;           /* --color-base-00 [5] */
	--background-primary-alt: #282c34;       /* --color-base-10 [5] */
	--background-secondary: #181c20;         /* --color-base-20 [5] */
	--background-secondary-alt: #35393e;     /* --color-base-30 [5] */
	--background-modifier-border: #2c313c;   /* --color-base-25 [5] */

	/* Текст и акценты */
	--text-normal: #dadada;                  /* --color-base-100 [5] */
	--text-muted: #bababa;                   /* --color-base-70 [5] */
	--interactive-accent: #7bb1f0;           /* Рассчитано из HSL(215, 75%, 70%) [1] */

	/* Identity / Avatars (на базе основной палитры Things Dark) */
	--color-identity-1: #fb464c; /* Red [5] */
	--color-identity-2: #44cf6e; /* Green [5] */
	--color-identity-3: #e0de71; /* Yellow [5] */
	--color-identity-4: #027aff; /* Blue [5] */
	--color-identity-5: #a882ff; /* Purple [5] */
	--color-identity-6: #fa99cd; /* Pink [5] */
}