/**
 * GitDocs — design tokens.
 *
 * 1. Fonts (self-hosted, OFL): Google Sans Flex (UI/prose), Google Sans Code (code).
 *    The whole family is swappable through ONE variable: --gd-font-sans.
 *    If licensed "Google Sans" files are placed in assets/fonts/google-sans/,
 *    PHP emits @font-face rules for them and they take precedence.
 * 2. Scales: type, spacing, radius, layout, motion.
 * 3. Colour tokens: light set (:root) and dark set ([data-theme="dark"]).
 *    A single accent (--gd-accent, from the Customizer) drives every tint via color-mix().
 * 4. Icon masks (generated from the bundled Lucide set).
 */

/* ------------------------------------------------------------------ 1. Fonts */

@font-face {
	font-family: "Google Sans Flex";
	font-style: normal;
	font-weight: 100 1000;
	font-display: swap;
	src: url("../fonts/google-sans-flex/google-sans-flex-latin-ext-wght-normal.woff2") format("woff2-variations"),
		url("../fonts/google-sans-flex/google-sans-flex-latin-ext-wght-normal.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Google Sans Flex";
	font-style: normal;
	font-weight: 100 1000;
	font-display: swap;
	src: url("../fonts/google-sans-flex/google-sans-flex-latin-wght-normal.woff2") format("woff2-variations"),
		url("../fonts/google-sans-flex/google-sans-flex-latin-wght-normal.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Google Sans Code";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("../fonts/google-sans-code/google-sans-code-latin-ext-wght-normal.woff2") format("woff2-variations"),
		url("../fonts/google-sans-code/google-sans-code-latin-ext-wght-normal.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Google Sans Code";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("../fonts/google-sans-code/google-sans-code-latin-wght-normal.woff2") format("woff2-variations"),
		url("../fonts/google-sans-code/google-sans-code-latin-wght-normal.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* -------------------------------------------------- 2. Scales (theme-agnostic) */

:root {
	/* Typography — change --gd-font-sans to swap the whole UI font. */
	--gd-font-sans: "Google Sans", "Google Sans Flex", "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--gd-font-mono: "Google Sans Code", ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
	--gd-font-display: var(--gd-font-sans);

	--gd-text-2xs: 0.6875rem;
	--gd-text-xs: 0.75rem;
	--gd-text-sm: 0.875rem;
	--gd-text-base: 1rem;
	--gd-text-prose: 1.0625rem;
	--gd-text-lg: 1.1875rem;
	--gd-text-xl: 1.5rem;
	--gd-text-2xl: 1.875rem;
	--gd-text-3xl: clamp(1.875rem, 1.4rem + 1.6vw, 2.5rem);
	--gd-text-hero: clamp(2rem, 1.35rem + 2.4vw, 3rem);

	--gd-leading-tight: 1.2;
	--gd-leading-snug: 1.4;
	--gd-leading: 1.6;
	--gd-leading-prose: 1.75;

	--gd-weight-regular: 400;
	--gd-weight-medium: 500;
	--gd-weight-semibold: 600;
	--gd-weight-bold: 700;
	--gd-tracking-tight: -0.015em;
	--gd-tracking-caps: 0.06em;

	/* Spacing (4px grid) */
	--gd-space-1: 0.25rem;
	--gd-space-2: 0.5rem;
	--gd-space-3: 0.75rem;
	--gd-space-4: 1rem;
	--gd-space-5: 1.25rem;
	--gd-space-6: 1.5rem;
	--gd-space-8: 2rem;
	--gd-space-10: 2.5rem;
	--gd-space-12: 3rem;
	--gd-space-16: 4rem;
	--gd-space-20: 5rem;

	/* Radii (8–12px language) */
	--gd-radius-xs: 4px;
	--gd-radius-sm: 6px;
	--gd-radius: 8px;
	--gd-radius-md: 10px;
	--gd-radius-lg: 12px;
	--gd-radius-xl: 16px;
	--gd-radius-full: 999px;

	/* Layout */
	--gd-header-h: 64px;
	--gd-sidebar-w: 288px;
	--gd-toc-w: 232px;
	--gd-content-max: 760px;
	--gd-landing-max: 1080px;
	--gd-gutter: clamp(1rem, 3.5vw, 2.5rem);
	--gd-anchor-offset: calc(var(--gd-header-h) + 1.5rem);

	/* Motion */
	--gd-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--gd-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--gd-fast: 0.12s;
	--gd-normal: 0.2s;
	--gd-slow: 0.32s;

	/* Layers */
	--gd-z-header: 40;
	--gd-z-drawer: 60;
	--gd-z-toast: 90;

	/* Accent (overridden inline from the Customizer). */
	--gd-accent: #2563eb;

	/* @icons (generated from assets/icons/icons.json — Lucide, ISC) */
	--gd-i-info: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
	--gd-i-success: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5'/%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3C/svg%3E");
	--gd-i-warning: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
	--gd-i-danger: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 16h.01'/%3E%3Cpath d='M12 8v4'/%3E%3Cpath d='M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z'/%3E%3C/svg%3E");
	--gd-i-link: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
	--gd-i-external: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E");
	--gd-i-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
	--gd-i-chevdown: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	--gd-i-file: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z'/%3E%3Cpath d='M14 2v5a1 1 0 0 0 1 1h5'/%3E%3Cpath d='M10 9H8'/%3E%3Cpath d='M16 13H8'/%3E%3Cpath d='M16 17H8'/%3E%3C/svg%3E");
	--gd-i-download: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15V3'/%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
	--gd-i-play: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z'/%3E%3C/svg%3E");
	--gd-i-globe: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
	--gd-i-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
	--gd-i-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	--gd-i-copy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='14' x='8' y='8' rx='2' ry='2'/%3E%3Cpath d='M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2'/%3E%3C/svg%3E");
	--gd-i-hash: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' x2='20' y1='9' y2='9'/%3E%3Cline x1='4' x2='20' y1='15' y2='15'/%3E%3Cline x1='10' x2='8' y1='3' y2='21'/%3E%3Cline x1='16' x2='14' y1='3' y2='21'/%3E%3C/svg%3E");
	--gd-i-zoom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 21-4.34-4.34'/%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3C/svg%3E");
	--gd-i-x: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------ 3a. Colours — light */

:root {
	color-scheme: light;

	--gd-bg: #ffffff;
	--gd-bg-subtle: #f8f9fb;
	--gd-bg-muted: #f1f3f6;
	--gd-bg-elevated: #ffffff;
	--gd-bg-hover: rgba(15, 23, 42, 0.045);
	--gd-bg-active: rgba(15, 23, 42, 0.07);
	--gd-header-bg: rgba(255, 255, 255, 0.82);

	--gd-border: #e7e9ee;
	--gd-border-strong: #d5d9e0;
	--gd-border-subtle: #eff1f4;

	--gd-text: #1b1e24;
	--gd-text-muted: #5a6170;
	--gd-text-subtle: #858c99;
	--gd-heading: #0f1216;

	--gd-accent-text: color-mix(in oklab, var(--gd-accent) 90%, black);
	--gd-accent-hover: color-mix(in oklab, var(--gd-accent) 82%, black);
	--gd-accent-soft: color-mix(in srgb, var(--gd-accent) 9%, transparent);
	--gd-accent-softer: color-mix(in srgb, var(--gd-accent) 5%, transparent);
	--gd-accent-border: color-mix(in srgb, var(--gd-accent) 28%, transparent);
	--gd-on-accent: #ffffff;
	--gd-focus-ring: 0 0 0 3px color-mix(in srgb, var(--gd-accent) 32%, transparent);
	--gd-selection: color-mix(in srgb, var(--gd-accent) 20%, transparent);
	--gd-mark: #fff1a8;

	--gd-code-bg: #f7f8fa;
	--gd-code-border: #e7e9ee;
	--gd-code-bar: #f1f3f6;
	--gd-inline-code-bg: rgba(15, 23, 42, 0.055);
	--gd-inline-code-text: #24292f;

	--gd-shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
	--gd-shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.07), 0 1px 2px rgba(16, 24, 40, 0.04);
	--gd-shadow-md: 0 6px 16px -4px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.05);
	--gd-shadow-lg: 0 24px 48px -12px rgba(16, 24, 40, 0.22), 0 4px 12px -4px rgba(16, 24, 40, 0.08);
	--gd-scrim: rgba(12, 15, 22, 0.42);

	--gd-info: #2563eb;
	--gd-info-bg: #eff5ff;
	--gd-info-border: #cfe0fe;
	--gd-success: #15803d;
	--gd-success-bg: #effbf3;
	--gd-success-border: #c6ecd3;
	--gd-warning: #b45309;
	--gd-warning-bg: #fff8eb;
	--gd-warning-border: #fbe0a8;
	--gd-danger: #c81e1e;
	--gd-danger-bg: #fef2f2;
	--gd-danger-border: #fbcfcf;

	/* Syntax (GitHub-like light) */
	--gd-syn-text: #1f2328;
	--gd-syn-comment: #6e7781;
	--gd-syn-keyword: #cf222e;
	--gd-syn-string: #0a3069;
	--gd-syn-function: #8250df;
	--gd-syn-number: #0550ae;
	--gd-syn-tag: #116329;
	--gd-syn-attr: #0550ae;
	--gd-syn-property: #953800;
	--gd-syn-variable: #953800;
	--gd-syn-punct: #57606a;
	--gd-syn-builtin: #6639ba;
	--gd-syn-inserted: #116329;
	--gd-syn-inserted-bg: #dafbe1;
	--gd-syn-deleted: #82071e;
	--gd-syn-deleted-bg: #ffebe9;
}

/* ------------------------------------------------------- 3b. Colours — dark */

:root[data-theme="dark"] {
	color-scheme: dark;

	--gd-bg: #0e1117;
	--gd-bg-subtle: #121620;
	--gd-bg-muted: #171c27;
	--gd-bg-elevated: #151a24;
	--gd-bg-hover: rgba(255, 255, 255, 0.05);
	--gd-bg-active: rgba(255, 255, 255, 0.085);
	--gd-header-bg: rgba(14, 17, 23, 0.8);

	--gd-border: #232a37;
	--gd-border-strong: #313948;
	--gd-border-subtle: #1b212c;

	--gd-text: #e3e6ec;
	--gd-text-muted: #9aa2b1;
	--gd-text-subtle: #6c7486;
	--gd-heading: #f4f6f9;

	--gd-accent-text: color-mix(in oklab, var(--gd-accent) 58%, white);
	--gd-accent-hover: color-mix(in oklab, var(--gd-accent) 48%, white);
	--gd-accent-soft: color-mix(in srgb, var(--gd-accent) 20%, transparent);
	--gd-accent-softer: color-mix(in srgb, var(--gd-accent) 11%, transparent);
	--gd-accent-border: color-mix(in srgb, var(--gd-accent) 45%, transparent);
	--gd-focus-ring: 0 0 0 3px color-mix(in srgb, var(--gd-accent) 45%, transparent);
	--gd-selection: color-mix(in srgb, var(--gd-accent) 35%, transparent);
	--gd-mark: rgba(250, 204, 21, 0.3);

	--gd-code-bg: #121722;
	--gd-code-border: #232a37;
	--gd-code-bar: #171d29;
	--gd-inline-code-bg: rgba(255, 255, 255, 0.075);
	--gd-inline-code-text: #e3e6ec;

	--gd-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
	--gd-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.3);
	--gd-shadow-md: 0 8px 20px -6px rgba(0, 0, 0, 0.55), 0 2px 6px -2px rgba(0, 0, 0, 0.35);
	--gd-shadow-lg: 0 28px 56px -12px rgba(0, 0, 0, 0.7), 0 6px 16px -6px rgba(0, 0, 0, 0.45);
	--gd-scrim: rgba(0, 0, 0, 0.58);

	--gd-info: #6ea8fe;
	--gd-info-bg: rgba(59, 130, 246, 0.1);
	--gd-info-border: rgba(96, 165, 250, 0.28);
	--gd-success: #4ade80;
	--gd-success-bg: rgba(34, 197, 94, 0.09);
	--gd-success-border: rgba(74, 222, 128, 0.26);
	--gd-warning: #fbbf24;
	--gd-warning-bg: rgba(245, 158, 11, 0.09);
	--gd-warning-border: rgba(251, 191, 36, 0.26);
	--gd-danger: #f87171;
	--gd-danger-bg: rgba(239, 68, 68, 0.1);
	--gd-danger-border: rgba(248, 113, 113, 0.28);

	/* Syntax (GitHub-like dark) */
	--gd-syn-text: #e6edf3;
	--gd-syn-comment: #8b949e;
	--gd-syn-keyword: #ff7b72;
	--gd-syn-string: #a5d6ff;
	--gd-syn-function: #d2a8ff;
	--gd-syn-number: #79c0ff;
	--gd-syn-tag: #7ee787;
	--gd-syn-attr: #79c0ff;
	--gd-syn-property: #ffa657;
	--gd-syn-variable: #ffa657;
	--gd-syn-punct: #9aa4b2;
	--gd-syn-builtin: #d2a8ff;
	--gd-syn-inserted: #aff5b4;
	--gd-syn-inserted-bg: rgba(46, 160, 67, 0.15);
	--gd-syn-deleted: #ffdcd7;
	--gd-syn-deleted-bg: rgba(248, 81, 73, 0.15);
}

/* No-JS visitors still follow the OS preference (same values as above). */
@media (prefers-color-scheme: dark) {
	:root.no-js {
		color-scheme: dark;

		--gd-bg: #0e1117;
		--gd-bg-subtle: #121620;
		--gd-bg-muted: #171c27;
		--gd-bg-elevated: #151a24;
		--gd-bg-hover: rgba(255, 255, 255, 0.05);
		--gd-bg-active: rgba(255, 255, 255, 0.085);
		--gd-header-bg: rgba(14, 17, 23, 0.8);
		--gd-border: #232a37;
		--gd-border-strong: #313948;
		--gd-border-subtle: #1b212c;
		--gd-text: #e3e6ec;
		--gd-text-muted: #9aa2b1;
		--gd-text-subtle: #6c7486;
		--gd-heading: #f4f6f9;
		--gd-accent-text: color-mix(in oklab, var(--gd-accent) 58%, white);
		--gd-accent-soft: color-mix(in srgb, var(--gd-accent) 20%, transparent);
		--gd-accent-border: color-mix(in srgb, var(--gd-accent) 45%, transparent);
		--gd-code-bg: #121722;
		--gd-code-border: #232a37;
		--gd-code-bar: #171d29;
		--gd-inline-code-bg: rgba(255, 255, 255, 0.075);
		--gd-inline-code-text: #e3e6ec;
		--gd-info: #6ea8fe;
		--gd-info-bg: rgba(59, 130, 246, 0.1);
		--gd-info-border: rgba(96, 165, 250, 0.28);
		--gd-success: #4ade80;
		--gd-success-bg: rgba(34, 197, 94, 0.09);
		--gd-success-border: rgba(74, 222, 128, 0.26);
		--gd-warning: #fbbf24;
		--gd-warning-bg: rgba(245, 158, 11, 0.09);
		--gd-warning-border: rgba(251, 191, 36, 0.26);
		--gd-danger: #f87171;
		--gd-danger-bg: rgba(239, 68, 68, 0.1);
		--gd-danger-border: rgba(248, 113, 113, 0.28);
		--gd-syn-text: #e6edf3;
		--gd-syn-comment: #8b949e;
		--gd-syn-keyword: #ff7b72;
		--gd-syn-string: #a5d6ff;
		--gd-syn-function: #d2a8ff;
		--gd-syn-number: #79c0ff;
		--gd-syn-tag: #7ee787;
		--gd-syn-attr: #79c0ff;
		--gd-syn-property: #ffa657;
		--gd-syn-variable: #ffa657;
		--gd-syn-punct: #9aa4b2;
		--gd-syn-builtin: #d2a8ff;
	}
}
