Skip to content

Commit

Permalink
Update tertiary color
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Nov 14, 2024
1 parent 0ce0002 commit 4f7b8a6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/mdx/Mermaid.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ document.addEventListener("DOMContentLoaded", async () => {
theme: "base",
themeVariables: {
primaryColor: "#2D3E50",
tertiaryColor: "#3b5169",
tertiaryTextColor: "white",
primaryTextColor: "white",
lineColor: "#1FC2A7"
}
Expand Down
19 changes: 19 additions & 0 deletions src/content/docs/start-here/assays.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,25 @@ import { Steps } from '@astrojs/starlight/components';
import { Card } from '@astrojs/starlight/components';
import { FileTree } from '@astrojs/starlight/components';

import Mermaid from '@components/mdx/Mermaid.astro'

<Mermaid title="ARC structure" height="300">
```mermaid
flowchart TB
c1-->a2
subgraph one
a1-->a2
end
subgraph two
b1-->b2
end
subgraph three
c1-->c2
end
```
</Mermaid>

<ViolaSays>
Ok, I think I understand. The study is used to describe the overall experiment and the sample generation. Then the assays are used to describe the individual lab processes and the data generation!
</ViolaSays>
Expand Down

0 comments on commit 4f7b8a6

Please sign in to comment.