All checks were successful
- Create apps/docs/ with Docusaurus 3.7.0 - Add documentation: architecture, backend, frontend, infrastructure, development, ADR - Include 5 Mermaid diagrams (system architecture, request flow, modules, caching, deployment) - Configure as npm workspace with dev:docs/build:docs scripts - Copy existing ADR documents from docs/architecture/adr/
14 lines
378 B
CSS
14 lines
378 B
CSS
:root {
|
|
--ifm-color-primary: #1976d2;
|
|
--ifm-color-primary-dark: #1565c0;
|
|
--ifm-color-primary-darker: #0d47a1;
|
|
--ifm-color-primary-light: #2196f3;
|
|
--ifm-color-primary-lighter: #42a5f5;
|
|
--ifm-code-font-size: 95%;
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
[data-theme='dark'] {
|
|
--docusaurus-highlighted-code-line-bg: rgba(255, 255, 255, 0.1);
|
|
}
|