From 0810e0da84e7b6f04e938df0f7ace1f57e40ae8a Mon Sep 17 00:00:00 2001 From: Elizabeth Campolongo <38985481+egrace479@users.noreply.github.com> Date: Wed, 22 Oct 2025 16:53:06 -0400 Subject: [PATCH 1/9] Set color scheme to match ABC Colors Pull from ABC-Guide [PR 7](https://github.com/ABC-Center/ABC-guide/pull/7) * Redefine light and dark color schemes to match ABC colors * Set dark-mode specific URL colors Co-authored-by: Anna Viklund * Align hover color to accent for light and dark modes * Define variables for all ABC colors for improved readability Co-authored-by: Anna Viklund --------- Co-authored-by: Anna Viklund --- docs/stylesheets/extra.css | 94 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 05db76f..4e1eaff 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -23,3 +23,97 @@ based on this suggestion: https://github.com/squidfunk/mkdocs-material/discussio height: 2.8rem; width: 2.8rem; } + +/* Define ABC colors for theme */ +body { + --color-turquoise: #4fb797; + --color-turquoise-10: #4fb7971a; /* 10% alpha */ + --color-grey-blue: #667faf; + --color-gb-contrast: #96ADCD; /* custom similar grey-blue for dark mode contrast */ + --color-dark-grey-blue: #2d3c58; + --color-abc-green: #73ab4e; + --color-abc-green-10: #73ab4e1a; /* 10% alpha */ + --color-abc-a-bg: #4e70b3; /* ABC Logo "A" background color */ +} + +/* Light mode colors */ +[data-md-color-scheme="default"] { + --md-primary-fg-color: var(--color-grey-blue); + --md-accent-fg-color: var(--color-turquoise); +} + +/* Set admonition (Note) colors to stand out better */ +.md-typeset .admonition.note, .md-typeset details.note { + border-color: var(--color-turquoise); + box-shadow: var(--color-turquoise-10); +} + +/* icon color */ +.md-typeset .admonition.note > .admonition-title::before { + background-color: var(--color-turquoise); +} + +/* shaded part (title/heading) */ +.md-typeset .note>.admonition-title,.md-typeset .note>summary { + background-color: var(--color-turquoise-10); +} + +/* Set admonition (question) colors */ +.md-typeset .admonition.question, .md-typeset details.question { + border-color: var(--color-abc-green); + box-shadow: var(--color-abc-green-10); +} + +/* icon color */ +.md-typeset .admonition.question > .admonition-title::before { + background-color: var(--color-abc-green); +} + +/* shaded part (title/heading) */ +.md-typeset .question>.admonition-title,.md-typeset .question>summary { + background-color: var(--color-abc-green-10); +} + +/* Set URL colors */ +/* Content URLs */ +[data-md-color-scheme="default"] .md-typeset a { + color: var(--color-abc-a-bg); +} + +[data-md-color-scheme="default"] .md-typeset a:hover { + color: var(--color-turquoise); +} + +/* Navigation URL (side panel contents) + to better distinguish from those that are above */ +[data-md-color-scheme="default"] .md-nav .md-nav__link--active { + color: var(--color-abc-a-bg); +} + +[data-md-color-scheme="default"] .md-nav .md-nav__link--active:hover { + color: var(--color-turquoise); +} + +/* Dark mode colors */ +[data-md-color-scheme="slate"] { + --md-primary-fg-color: var(--color-dark-grey-blue); + --md-accent-fg-color: var(--color-turquoise); +} + +/* Dark mode custom link color */ +[data-md-color-scheme="slate"] .md-typeset a { + color: var(--color-gb-contrast); +} + +[data-md-color-scheme="slate"] .md-typeset a:hover { + color: var(--color-turquoise); +} + +/* Dark mode custom active link color (side panel) */ +[data-md-color-scheme="slate"] .md-nav .md-nav__link--active { + color: var(--color-gb-contrast); +} + +[data-md-color-scheme="slate"] .md-nav .md-nav__link--active:hover { + color: var(--color-turquoise); +} From bc9842eba658e631a51fb2d5a15af775191128b4 Mon Sep 17 00:00:00 2001 From: Elizabeth Campolongo <38985481+egrace479@users.noreply.github.com> Date: Thu, 18 Dec 2025 11:51:04 -0500 Subject: [PATCH 2/9] fix 18: set GitHub panel color to match on mobile/small screens Pull from ABC Guide [PR 19](https://github.com/ABC-Center/ABC-guide/pull/19) * fix [18](https://github.com/ABC-Center/ABC-guide/issues/18): set gh panel color to match on mobile/small screens * fix: adjust text color for active parent item in small screen sidebar * Fix the active hover color for active parent item in small screen sidebar Also needed manual setting for this part or it stays constant --------- Co-authored-by: Anna Viklund --- docs/stylesheets/extra.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 4e1eaff..7a77eea 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -42,6 +42,15 @@ body { --md-accent-fg-color: var(--color-turquoise); } +/* GitHub panel color (mobile and small screen, issue 18) */ +.md-nav__source { + background-color: var(--md-primary-fg-color); +} + +.md-source { + background-color: var(--md-primary-fg-color); +} + /* Set admonition (Note) colors to stand out better */ .md-typeset .admonition.note, .md-typeset details.note { border-color: var(--color-turquoise); @@ -117,3 +126,16 @@ body { [data-md-color-scheme="slate"] .md-nav .md-nav__link--active:hover { color: var(--color-turquoise); } + +/* Small screen adjustments */ +@media screen and (max-width: 76.2344em) { + /* Dark mode custom active parent color (side panel) */ + [data-md-color-scheme="slate"] .md-nav .md-nav__item--active > .md-nav__link { + color: var(--color-gb-contrast); + } + + /* Dark mode custom active parent hover color (side panel) */ + [data-md-color-scheme="slate"] .md-nav .md-nav__item--active:hover > .md-nav__link { + color: var(--color-turquoise); + } +} From 3a7c0d351cfd1f5535fbab9cc2b0db71de786cc0 Mon Sep 17 00:00:00 2001 From: egrace479 Date: Tue, 17 Feb 2026 17:37:44 -0500 Subject: [PATCH 3/9] Set colors to be more modular with some added instructions Use Imageomics Guide colors for light mode and ABC for dark mode --- docs/stylesheets/extra.css | 80 ++++++++++++++++++++++---------------- 1 file changed, 46 insertions(+), 34 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 7a77eea..997666d 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -24,22 +24,27 @@ based on this suggestion: https://github.com/squidfunk/mkdocs-material/discussio width: 2.8rem; } -/* Define ABC colors for theme */ +/* +Define colors for theme +Defaults with Imageomics & ABC colors +*/ body { - --color-turquoise: #4fb797; - --color-turquoise-10: #4fb7971a; /* 10% alpha */ - --color-grey-blue: #667faf; - --color-gb-contrast: #96ADCD; /* custom similar grey-blue for dark mode contrast */ - --color-dark-grey-blue: #2d3c58; - --color-abc-green: #73ab4e; - --color-abc-green-10: #73ab4e1a; /* 10% alpha */ - --color-abc-a-bg: #4e70b3; /* ABC Logo "A" background color */ + --color-lm-primary: #5d8095; /* light mode primary color (Imageomics blue) */ + --color-lm-url: #0097b2; /* light mode URL + note color (dark teal) */ + --color-lm-url-10: #0097b21a; /* 10% alpha */ + --color-lm-accent: #9bcb5e; /* light mode accent color (light green) */ + --color-lm-accent-10: #9bcb5e1a; /* 10% alpha */ + --color-dm-primary: #2d3c58; /* dark mode primary color (dark grey blue) */ + --color-dm-url: #96ADCD; /* custom similar grey-blue for dark mode contrast */ + --color-dm-accent: #4fb797; /* dark mode accent color (turquoise) */ + --color-dm-accent-10: #4fb7971a; /* 10% alpha */ } /* Light mode colors */ [data-md-color-scheme="default"] { - --md-primary-fg-color: var(--color-grey-blue); - --md-accent-fg-color: var(--color-turquoise); + --md-primary-fg-color: var(--color-lm-primary); + --md-accent-fg-color: var(--color-lm-accent); + --md-accent-fg-color-10: var(--color-lm-accent-10); } /* GitHub panel color (mobile and small screen, issue 18) */ @@ -51,91 +56,98 @@ body { background-color: var(--md-primary-fg-color); } -/* Set admonition (Note) colors to stand out better */ +/* +Set admonition (Note) colors to stand out better +Define through LM/DM scheme color variables to change with mode +*/ .md-typeset .admonition.note, .md-typeset details.note { - border-color: var(--color-turquoise); - box-shadow: var(--color-turquoise-10); + border-color: var(--color-lm-url); + box-shadow: var(--color-lm-url-10); } /* icon color */ .md-typeset .admonition.note > .admonition-title::before { - background-color: var(--color-turquoise); + background-color: var(--color-lm-url); } /* shaded part (title/heading) */ .md-typeset .note>.admonition-title,.md-typeset .note>summary { - background-color: var(--color-turquoise-10); + background-color: var(--color-lm-url-10); } -/* Set admonition (question) colors */ +/* +Set admonition (question) colors +Change with LM/DM (set through scheme color variables) +*/ .md-typeset .admonition.question, .md-typeset details.question { - border-color: var(--color-abc-green); - box-shadow: var(--color-abc-green-10); + border-color: var(--md-accent-fg-color); + box-shadow: var(--md-accent-fg-color-10); } /* icon color */ .md-typeset .admonition.question > .admonition-title::before { - background-color: var(--color-abc-green); + background-color: var(--md-accent-fg-color); } /* shaded part (title/heading) */ .md-typeset .question>.admonition-title,.md-typeset .question>summary { - background-color: var(--color-abc-green-10); + background-color: var(--md-accent-fg-color-10); } -/* Set URL colors */ +/* Set lightmode URL colors */ /* Content URLs */ [data-md-color-scheme="default"] .md-typeset a { - color: var(--color-abc-a-bg); + color: var(--color-lm-url); } [data-md-color-scheme="default"] .md-typeset a:hover { - color: var(--color-turquoise); + color: var(--md-accent-fg-color); } /* Navigation URL (side panel contents) to better distinguish from those that are above */ [data-md-color-scheme="default"] .md-nav .md-nav__link--active { - color: var(--color-abc-a-bg); + color: var(--color-lm-url); } [data-md-color-scheme="default"] .md-nav .md-nav__link--active:hover { - color: var(--color-turquoise); + color: var(--md-accent-fg-color); } /* Dark mode colors */ [data-md-color-scheme="slate"] { - --md-primary-fg-color: var(--color-dark-grey-blue); - --md-accent-fg-color: var(--color-turquoise); + --md-primary-fg-color: var(--color-dm-primary); + --md-accent-fg-color: var(--color-dm-accent); + --md-accent-fg-color-10: var(--color-dm-accent-10); } /* Dark mode custom link color */ [data-md-color-scheme="slate"] .md-typeset a { - color: var(--color-gb-contrast); + color: var(--color-dm-url); } [data-md-color-scheme="slate"] .md-typeset a:hover { - color: var(--color-turquoise); + color: var(--md-accent-fg-color); } /* Dark mode custom active link color (side panel) */ [data-md-color-scheme="slate"] .md-nav .md-nav__link--active { - color: var(--color-gb-contrast); + color: var(--color-dm-url); } [data-md-color-scheme="slate"] .md-nav .md-nav__link--active:hover { - color: var(--color-turquoise); + color: var(--md-accent-fg-color); } /* Small screen adjustments */ @media screen and (max-width: 76.2344em) { /* Dark mode custom active parent color (side panel) */ [data-md-color-scheme="slate"] .md-nav .md-nav__item--active > .md-nav__link { - color: var(--color-gb-contrast); + color: var(--color-dm-url); } /* Dark mode custom active parent hover color (side panel) */ [data-md-color-scheme="slate"] .md-nav .md-nav__item--active:hover > .md-nav__link { - color: var(--color-turquoise); + color: var(--md-accent-fg-color); } } From d7d8d4172fc01b0a06b1ff693c2201322423c454 Mon Sep 17 00:00:00 2001 From: egrace479 Date: Tue, 17 Feb 2026 17:53:25 -0500 Subject: [PATCH 4/9] Add color-specification instructions --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1e71e03..86ec76d 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,8 @@ Primary pages to personalize are: - [Glossary for Imageomics](docs/wiki-guide/Glossary-for-Imageomics.md): this page should be updated to a topic relevant to your field or focus. - Templates should be updated for your organization (mainly the `Acknowledgements` sections, pre-filled URL suggestions, domain-specific suggestions and guidance). +Additionally, you may wish to match the color scheme to your organization or group. This can be done by changing the preset values in [docs/stylesheets/extra.css](docs/stylesheets/extra.css). To check accessibility of color schemes, [tanaguru contrast finder](https://contrast-finder.tanaguru.com/result.html?foreground=%23667FAF&background=%231F2129&ratio=7&isBackgroundTested=false&algo=Rgb&distanceSort=asc) has good flexibility in how you provide the color and how they fix it (providing a similar alternate color with sufficient contrast). Everything following color definition can be removed if you prefer to use a predefined [MkDocs color scheme](https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/). + ## Contributing If you'd like to contribute to this guide, please read our [Contributing Guidelines](CONTRIBUTING.md) for information about our standards, development workflow, and submission process. From 3c6f6ec9390b8aee5dcd94ec8475214d4a73638d Mon Sep 17 00:00:00 2001 From: egrace479 Date: Thu, 19 Feb 2026 17:31:18 -0500 Subject: [PATCH 5/9] Try green-teal color scheme with purple accents --- docs/stylesheets/extra.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 997666d..b0fc931 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -29,15 +29,15 @@ Define colors for theme Defaults with Imageomics & ABC colors */ body { - --color-lm-primary: #5d8095; /* light mode primary color (Imageomics blue) */ - --color-lm-url: #0097b2; /* light mode URL + note color (dark teal) */ - --color-lm-url-10: #0097b21a; /* 10% alpha */ - --color-lm-accent: #9bcb5e; /* light mode accent color (light green) */ - --color-lm-accent-10: #9bcb5e1a; /* 10% alpha */ - --color-dm-primary: #2d3c58; /* dark mode primary color (dark grey blue) */ - --color-dm-url: #96ADCD; /* custom similar grey-blue for dark mode contrast */ - --color-dm-accent: #4fb797; /* dark mode accent color (turquoise) */ - --color-dm-accent-10: #4fb7971a; /* 10% alpha */ + --color-lm-primary: #125f5f; /* light mode primary color (Imageomics blue) */ + --color-lm-url: #1b9090; /* light mode URL + note color (dark teal) */ + --color-lm-url-10: #1b90901a; /* 10% alpha */ + --color-lm-accent: #8e4799; /* light mode accent color (light green) */ + --color-lm-accent-10: #8e47991a; /* 10% alpha */ + --color-dm-primary: #0b4141; /* dark mode primary color (dark grey blue) */ + --color-dm-url: #35a5a5; /* custom similar grey-blue for dark mode contrast */ + --color-dm-accent: #925a9b; /* dark mode accent color (turquoise) */ + --color-dm-accent-10: #925a9b1a; /* 10% alpha */ } /* Light mode colors */ From f913c4cba7a9b53528b856ea4ca4e906b7452abc Mon Sep 17 00:00:00 2001 From: egrace479 Date: Tue, 17 Mar 2026 20:02:05 -0400 Subject: [PATCH 6/9] Implement suggested color scheme from #59 Co-authored-by: Anna Viklund --- docs/stylesheets/extra.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index b0fc931..6f6c597 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -29,15 +29,15 @@ Define colors for theme Defaults with Imageomics & ABC colors */ body { - --color-lm-primary: #125f5f; /* light mode primary color (Imageomics blue) */ - --color-lm-url: #1b9090; /* light mode URL + note color (dark teal) */ - --color-lm-url-10: #1b90901a; /* 10% alpha */ - --color-lm-accent: #8e4799; /* light mode accent color (light green) */ - --color-lm-accent-10: #8e47991a; /* 10% alpha */ - --color-dm-primary: #0b4141; /* dark mode primary color (dark grey blue) */ - --color-dm-url: #35a5a5; /* custom similar grey-blue for dark mode contrast */ - --color-dm-accent: #925a9b; /* dark mode accent color (turquoise) */ - --color-dm-accent-10: #925a9b1a; /* 10% alpha */ + --color-lm-primary: #245963; /* light mode primary color (teal-9) */ + --color-lm-url: #3c707a; /* light mode URL + note color (teal-11) */ + --color-lm-url-10: #3c707a1a; /* 10% alpha */ + --color-lm-accent: #7eac55; /* light mode accent color (lime-9) */ + --color-lm-accent-10: #7eac551a; /* 10% alpha */ + --color-dm-primary: #174952; /* dark mode primary color (teal-10) */ + --color-dm-url: #7dc7d6; /* dark mode contrast url (teal-11) */ + --color-dm-accent: #73a049; /* dark mode accent color (lime-10) */ + --color-dm-accent-10: #73a0491a; /* 10% alpha */ } /* Light mode colors */ From 39bd02fc33544d60d5be6fa8e87c4bca887170ce Mon Sep 17 00:00:00 2001 From: egrace479 Date: Tue, 17 Mar 2026 20:10:00 -0400 Subject: [PATCH 7/9] Revise default color note to point to palette definition --- docs/stylesheets/extra.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 6f6c597..8a63bab 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -25,8 +25,8 @@ based on this suggestion: https://github.com/squidfunk/mkdocs-material/discussio } /* -Define colors for theme -Defaults with Imageomics & ABC colors +Define colors for theme +Color palette as defined here: https://github.com/Imageomics/Collaborative-distributed-science-guide/issues/59 */ body { --color-lm-primary: #245963; /* light mode primary color (teal-9) */ From 9f5cccbb1592f7c81732887a9602b5771b92ea19 Mon Sep 17 00:00:00 2001 From: Anna Viklund Date: Tue, 24 Mar 2026 17:54:31 +0100 Subject: [PATCH 8/9] Small tweaks to color scheme (#61) * Adjust colors for admonition tip * Adjust colors for small screen navigation * Make links more distinguishable * Adjust colors for admonition info * Tweak link appearance * Apply link tweak suggestions from code review Co-authored-by: Elizabeth Campolongo <38985481+egrace479@users.noreply.github.com> * Tweak logic for admonition colors * Set colors for summary component * Add background color definition clarification from main theme, not overridden --------- Co-authored-by: Elizabeth Campolongo <38985481+egrace479@users.noreply.github.com> --- docs/stylesheets/extra.css | 49 +++++++++++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 8 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 8a63bab..433b832 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -56,41 +56,63 @@ body { background-color: var(--md-primary-fg-color); } +/* Set colors for collapsible summary component */ +.md-typeset details { + border-color: var(--color-lm-url); + box-shadow: none !important; +} + +/* icon color */ +.md-typeset summary:before { + background-color: var(--color-lm-url); +} + +/* shaded part (title/heading) */ +.md-typeset summary { + background-color: var(--color-lm-url-10); +} + /* -Set admonition (Note) colors to stand out better +Set admonition (note and info) colors to stand out better Define through LM/DM scheme color variables to change with mode */ -.md-typeset .admonition.note, .md-typeset details.note { +.md-typeset .admonition.note, .md-typeset details.note, +.md-typeset .admonition.info, .md-typeset details.info { border-color: var(--color-lm-url); box-shadow: var(--color-lm-url-10); } /* icon color */ -.md-typeset .admonition.note > .admonition-title::before { +.md-typeset .admonition.note > .admonition-title::before, +.md-typeset .admonition.info > .admonition-title::before { background-color: var(--color-lm-url); } /* shaded part (title/heading) */ -.md-typeset .note>.admonition-title,.md-typeset .note>summary { +.md-typeset .note>.admonition-title,.md-typeset .note>summary, +.md-typeset .info>.admonition-title, .md-typeset .info>summary { background-color: var(--color-lm-url-10); } /* -Set admonition (question) colors +Set admonition (question and tip) colors Change with LM/DM (set through scheme color variables) */ -.md-typeset .admonition.question, .md-typeset details.question { +.md-typeset .admonition.question, .md-typeset details.question, +.md-typeset .admonition.tip, .md-typeset details.tip { border-color: var(--md-accent-fg-color); box-shadow: var(--md-accent-fg-color-10); } /* icon color */ -.md-typeset .admonition.question > .admonition-title::before { +.md-typeset .admonition.question > .admonition-title::before, +.md-typeset .admonition.tip > .admonition-title::before { background-color: var(--md-accent-fg-color); } /* shaded part (title/heading) */ -.md-typeset .question>.admonition-title,.md-typeset .question>summary { +.md-typeset .question>.admonition-title, .md-typeset .question>summary, +.md-typeset .tip>.admonition-title, .md-typeset .tip>summary { background-color: var(--md-accent-fg-color-10); } @@ -98,6 +120,7 @@ Change with LM/DM (set through scheme color variables) /* Content URLs */ [data-md-color-scheme="default"] .md-typeset a { color: var(--color-lm-url); + font-weight: bold; } [data-md-color-scheme="default"] .md-typeset a:hover { @@ -108,6 +131,7 @@ Change with LM/DM (set through scheme color variables) to better distinguish from those that are above */ [data-md-color-scheme="default"] .md-nav .md-nav__link--active { color: var(--color-lm-url); + font-weight: bold; } [data-md-color-scheme="default"] .md-nav .md-nav__link--active:hover { @@ -124,6 +148,7 @@ Change with LM/DM (set through scheme color variables) /* Dark mode custom link color */ [data-md-color-scheme="slate"] .md-typeset a { color: var(--color-dm-url); + font-weight: bold; } [data-md-color-scheme="slate"] .md-typeset a:hover { @@ -133,6 +158,7 @@ Change with LM/DM (set through scheme color variables) /* Dark mode custom active link color (side panel) */ [data-md-color-scheme="slate"] .md-nav .md-nav__link--active { color: var(--color-dm-url); + font-weight: bold; } [data-md-color-scheme="slate"] .md-nav .md-nav__link--active:hover { @@ -141,9 +167,16 @@ Change with LM/DM (set through scheme color variables) /* Small screen adjustments */ @media screen and (max-width: 76.2344em) { + .md-nav--primary .md-nav__title { + background-color: var(--md-primary-fg-color); + /* bg defined by main theme as #fff */ + color: var(--md-primary-bg-color); + } + /* Dark mode custom active parent color (side panel) */ [data-md-color-scheme="slate"] .md-nav .md-nav__item--active > .md-nav__link { color: var(--color-dm-url); + font-weight: bold; } /* Dark mode custom active parent hover color (side panel) */ From 6f65021929ccb244377b2c8d50d06cc2c1596b90 Mon Sep 17 00:00:00 2001 From: Elizabeth Campolongo <38985481+egrace479@users.noreply.github.com> Date: Tue, 24 Mar 2026 13:00:08 -0400 Subject: [PATCH 9/9] Add acknowledgment for Anna's help with color scheme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 86ec76d..8bcec69 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,8 @@ This guide was developed alongside the [Imageomics Guide](https://imageomics.git ### Special Thanks to... -[@EmersonFras](https://github.com/EmersonFras) for his help in setting up automated linting for easier contributing! +- [@EmersonFras](https://github.com/EmersonFras) for his help in setting up automated linting for easier contributing! +- [@annavik](https://github.com/annavik) for her help designing and implementing the color scheme! ### Funding