/*
Theme Name: Tech Growth Manual
Theme URI: https://example.com/tech-growth-manual
Author: Tech Growth Manual Team
Author URI: https://example.com
Description: Documentation-style WordPress theme for single-author tech blog with left sidebar knowledge tree, center content area, and right TOC panel. Inspired by Xiaolin Coding reading experience.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tech-growth-manual
Tags: blog, documentation, single-author, knowledge-base, technical

This theme is designed for long-term knowledge accumulation with structured columns, article trees, and read-only visitor experience.
*/

/*
 * Main theme styles are enqueued from assets/css/theme.css via functions.php
 * This file contains only the WordPress theme header for theme recognition
 */

:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #12243f;
  --text-soft: #60708a;
  --primary: #0f766e;
  --primary-strong: #115e59;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
}
