/**
 * Design tokens extracted from the shenpai.com origin stylesheets.
 *
 * These are a record of what the ported CSS already uses, not a new palette:
 * the values were counted out of assets/css/lib/style.css so that new markup
 * written for shenpai.vn can reuse the brand colours and type scale instead of
 * hardcoding hex values. Changing a value here does NOT restyle the ported
 * CSS — that still carries its own literals by design, to keep the clone
 * pixel-identical.
 */

:root {
	/* Brand — #323368 is the dominant accent across the origin theme. */
	--sp-primary: #323368;
	--sp-dark: #141b22;
	--sp-primary-tint: #eaedff;

	/* Text */
	--sp-text: #6f7172;
	--sp-text-muted: #777777;
	--sp-white: #ffffff;

	/* Surfaces */
	--sp-surface: #f5f5f5;
	--sp-border: #e4e4e4;

	/* Typography — Ubuntu carries headings/UI, Roboto the body copy. */
	--sp-font-heading: 'Ubuntu', sans-serif;
	--sp-font-body: 'Roboto', sans-serif;

	/* Layout */
	--sp-container: 1200px;
}
