From b46497080e5bd0b6a53899186ce596fbc8cdf3ae Mon Sep 17 00:00:00 2001 From: Brandon Schneider Date: Sat, 30 May 2026 20:57:50 -0500 Subject: [PATCH] =?UTF-8?q?docs:=20soft=20theme=20for=20GitHub=20Pages=20?= =?UTF-8?q?=E2=80=94=20Cayman=20+=20muted=20palette?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Cayman remote theme (soft blue gradient header) - Body: #f0f2f5 soft gray (not glaring white) - Content: #ffffff with subtle shadow - Code blocks: dark (#2d3436) with soft text - Tables: muted headers (#dfe6e9) - Links: #0984e3 blue, hover #74b9ff --- docs/_config.yml | 5 +++ docs/assets/css/style.scss | 78 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 docs/_config.yml create mode 100644 docs/assets/css/style.scss diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 00000000..2d064e8f --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1,5 @@ +title: Research Stack +description: Capability-adaptive compute fabric +remote_theme: pages-themes/cayman@v0.2.0 +plugins: + - jekyll-remote-theme diff --git a/docs/assets/css/style.scss b/docs/assets/css/style.scss new file mode 100644 index 00000000..d03576d4 --- /dev/null +++ b/docs/assets/css/style.scss @@ -0,0 +1,78 @@ +--- +--- + +@import "{{ site.theme }}"; + +body { + background-color: #f0f2f5; + color: #2d3436; +} + +.main-content { + background-color: #ffffff; + border-radius: 8px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); + padding: 2em 3em; +} + +.main-content h1, +.main-content h2, +.main-content h3 { + color: #2d3436; + border-bottom-color: #dfe6e9; +} + +.main-content code { + background-color: #f8f9fa; + color: #e17055; +} + +.main-content pre { + background-color: #2d3436; + color: #dfe6e9; + border-radius: 6px; +} + +.main-content table th { + background-color: #dfe6e9; + color: #2d3436; +} + +.main-content table td { + border-color: #e8ecef; +} + +.main-content a { + color: #0984e3; +} + +.main-content a:hover { + color: #74b9ff; +} + +.main-content blockquote { + border-left-color: #74b9ff; + background-color: #f0f4f8; +} + +.header { + background: linear-gradient(120deg, #2d3436, #636e72); + color: #dfe6e9; +} + +.project-name { + color: #ffffff; +} + +.project-tagline { + color: #b2bec3; +} + +.btn { + background-color: #0984e3; + color: #ffffff; +} + +.btn:hover { + background-color: #74b9ff; +}