/*
Theme Name: LMS
Theme URI: https://example.com/lms
Author: LMS
Author URI: https://example.com
Description: LMS WordPress theme with an Excalidraw page template and key-based persistence.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: lms
*/

:root {
  --lms-bg: #f4f4f4;
  --lms-surface: pink;
  --lms-text: #171717;
  --lms-muted: #5f5f5f;
  --lms-accent: #1f6f5f;
  --lms-border: #d7d2c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--lms-text);
  background: var(--lms-bgcolor, var(--lms-bg));
}

a {
  color: var(--lms-accent);
}
